Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsIScriptExternalNameSet_h__
7 #define nsIScriptExternalNameSet_h__
9 #include "nsISupports.h"
11 #define NS_ISCRIPTEXTERNALNAMESET_IID \
12 {0xa6cf90da, 0x15b3, 0x11d2, \
13 {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
15 class nsIScriptContext;
17 /**
18 * This interface represents a set of names or symbols that should be
19 * added to the "global" namespace of a script context. A name set is
20 * registered with the name set registry (see
21 * <code>nsIScriptNameSetRegistry</code>) at component registration
22 * time using the category manager.
23 */
25 class nsIScriptExternalNameSet : public nsISupports
26 {
27 public:
28 NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTEXTERNALNAMESET_IID)
30 /**
31 * Called to tell the name set to do any initialization it needs to
32 */
33 NS_IMETHOD InitializeNameSet(nsIScriptContext* aScriptContext) = 0;
34 };
36 NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptExternalNameSet,
37 NS_ISCRIPTEXTERNALNAMESET_IID)
39 #endif /* nsIScriptExternalNameSet_h__ */