2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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 03:22:35 +00: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 02:31:55 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2004-02-24 03:22:35 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsDOMScriptObjectFactory final : public nsIDOMScriptObjectFactory,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIObserver
|
2004-02-24 03:22:35 +00:00
|
|
|
{
|
2014-06-23 19:56:07 +00:00
|
|
|
~nsDOMScriptObjectFactory() {}
|
|
|
|
|
2004-02-24 03:22:35 +00:00
|
|
|
public:
|
|
|
|
nsDOMScriptObjectFactory();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIObserver
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
// nsIDOMScriptObjectFactory
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD_(nsISupports *) GetClassInfoInstance(nsDOMClassInfoID aID) override;
|
|
|
|
NS_IMETHOD_(nsISupports *) GetExternalClassInfoInstance(const nsAString& aName) override;
|
2004-02-24 03:22:35 +00:00
|
|
|
|
|
|
|
NS_IMETHOD RegisterDOMClassInfo(const char *aName,
|
|
|
|
nsDOMClassInfoExternalConstructorFnc aConstructorFptr,
|
|
|
|
const nsIID *aProtoChainInterface,
|
|
|
|
const nsIID **aInterfaces,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aScriptableFlags,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aHasClassInterface,
|
2015-03-21 16:28:04 +00:00
|
|
|
const nsCID *aConstructorCID) override;
|
2004-02-24 03:22:35 +00:00
|
|
|
};
|
2008-09-30 23:55:42 +00:00
|
|
|
|