Merge mozilla-central to autoland. a=merge CLOSED TREE
[gecko.git] / js / xpconnect / loader / JSMEnvironmentProxy.h
blobf45d7e380156e03a7013a83af7fd84d57fa884d7
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_loader_JSMEnvironmentProxy_h
8 #define mozilla_loader_JSMEnvironmentProxy_h
10 #include "js/Id.h" // JS::PropertyKey
11 #include "js/TypeDecls.h" // JSContext, JSObject
12 #include "js/RootingAPI.h" // JS::Handle
14 namespace mozilla {
15 namespace loader {
17 JSObject* ResolveModuleObjectPropertyById(JSContext* aCx,
18 JS::Handle<JSObject*> aModObj,
19 JS::Handle<JS::PropertyKey> aId);
21 JSObject* ResolveModuleObjectProperty(JSContext* aCx,
22 JS::Handle<JSObject*> aModObj,
23 const char* aName);
25 JSObject* CreateJSMEnvironmentProxy(JSContext* aCx,
26 JS::Handle<JSObject*> aGlobalObj);
28 } // namespace loader
29 } // namespace mozilla
31 #endif // mozilla_loader_JSMEnvironmentProxy_h