|
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/. */ |
|
5 |
|
6 #ifndef nsIScriptExternalNameSet_h__ |
|
7 #define nsIScriptExternalNameSet_h__ |
|
8 |
|
9 #include "nsISupports.h" |
|
10 |
|
11 #define NS_ISCRIPTEXTERNALNAMESET_IID \ |
|
12 {0xa6cf90da, 0x15b3, 0x11d2, \ |
|
13 {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}} |
|
14 |
|
15 class nsIScriptContext; |
|
16 |
|
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 */ |
|
24 |
|
25 class nsIScriptExternalNameSet : public nsISupports |
|
26 { |
|
27 public: |
|
28 NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTEXTERNALNAMESET_IID) |
|
29 |
|
30 /** |
|
31 * Called to tell the name set to do any initialization it needs to |
|
32 */ |
|
33 NS_IMETHOD InitializeNameSet(nsIScriptContext* aScriptContext) = 0; |
|
34 }; |
|
35 |
|
36 NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptExternalNameSet, |
|
37 NS_ISCRIPTEXTERNALNAMESET_IID) |
|
38 |
|
39 #endif /* nsIScriptExternalNameSet_h__ */ |