2004-02-24 06:22:35 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2004-02-24 06:22:35 +03:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation.
|
|
|
|
* Modifications made by IBM described herein are
|
|
|
|
* Copyright (c) International Business Machines
|
|
|
|
* Corporation, 2000
|
|
|
|
*
|
|
|
|
* Modifications to Mozilla code or documentation
|
|
|
|
* identified per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 03/27/2000 IBM Corp. Added PR_CALLBACK for Optlink
|
|
|
|
* use in OS2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIDOMScriptObjectFactory.h"
|
|
|
|
#include "nsIObserver.h"
|
2012-06-15 06:31:55 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2004-02-24 06:22:35 +03:00
|
|
|
|
2012-06-15 06:31:55 +04:00
|
|
|
class nsDOMScriptObjectFactory MOZ_FINAL : public nsIDOMScriptObjectFactory,
|
|
|
|
public nsIObserver
|
2004-02-24 06:22:35 +03:00
|
|
|
{
|
2014-06-23 23:56:07 +04:00
|
|
|
~nsDOMScriptObjectFactory() {}
|
|
|
|
|
2004-02-24 06:22:35 +03:00
|
|
|
public:
|
|
|
|
nsDOMScriptObjectFactory();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIObserver
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
// nsIDOMScriptObjectFactory
|
2013-06-05 20:15:48 +04:00
|
|
|
NS_IMETHOD_(nsISupports *) GetClassInfoInstance(nsDOMClassInfoID aID) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(nsISupports *) GetExternalClassInfoInstance(const nsAString& aName) MOZ_OVERRIDE;
|
2004-02-24 06:22:35 +03:00
|
|
|
|
|
|
|
NS_IMETHOD RegisterDOMClassInfo(const char *aName,
|
|
|
|
nsDOMClassInfoExternalConstructorFnc aConstructorFptr,
|
|
|
|
const nsIID *aProtoChainInterface,
|
|
|
|
const nsIID **aInterfaces,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aScriptableFlags,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aHasClassInterface,
|
2013-06-05 20:15:48 +04:00
|
|
|
const nsCID *aConstructorCID) MOZ_OVERRIDE;
|
2004-02-24 06:22:35 +03:00
|
|
|
};
|
2008-10-01 03:55:42 +04:00
|
|
|
|