Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / js / src / proxy / DOMProxy.h
blob91975658b121c597ef23e9f187cd55340b189c05
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 /* DOM proxy details that don't need to be exported as friend API. */
9 #ifndef proxy_DOMProxy_h
10 #define proxy_DOMProxy_h
12 #include "js/friend/DOMProxy.h" // JS::DOMProxyShadowsCheck
14 class JS_PUBLIC_API JSObject;
16 namespace js {
18 extern const void* GetDOMProxyHandlerFamily();
20 extern JS::DOMProxyShadowsCheck GetDOMProxyShadowsCheck();
22 inline bool DOMProxyIsShadowing(JS::DOMProxyShadowsResult result) {
23 return result == JS::DOMProxyShadowsResult::Shadows ||
24 result == JS::DOMProxyShadowsResult::ShadowsViaDirectExpando ||
25 result == JS::DOMProxyShadowsResult::ShadowsViaIndirectExpando;
28 extern const void* GetDOMRemoteProxyHandlerFamily();
30 extern bool IsDOMRemoteProxyObject(JSObject* object);
32 } // namespace js
34 #endif // proxy_DOMProxy_h