Realm.h (960B)
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/. */ 6 7 /* Shadow definition of |JS::Realm| innards. Do not use this directly! */ 8 9 #ifndef js_shadow_Realm_h 10 #define js_shadow_Realm_h 11 12 #include "jstypes.h" // JS_PUBLIC_API 13 14 namespace JS { 15 16 class JS_PUBLIC_API Compartment; 17 class JS_PUBLIC_API Realm; 18 19 namespace shadow { 20 21 class Realm { 22 protected: 23 JS::Compartment* compartment_; 24 25 explicit Realm(JS::Compartment* comp) : compartment_(comp) {} 26 27 public: 28 JS::Compartment* compartment() { return compartment_; } 29 static shadow::Realm* get(JS::Realm* realm) { 30 return reinterpret_cast<shadow::Realm*>(realm); 31 } 32 }; 33 34 } // namespace shadow 35 36 } // namespace JS 37 38 #endif // js_shadow_Realm_h