tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

XPCForwards.h (1273B)


      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 /* Private forward declarations. */
      8 
      9 #ifndef xpcforwards_h___
     10 #define xpcforwards_h___
     11 
     12 // forward declarations of internally used classes...
     13 
     14 class nsXPConnect;
     15 class XPCJSContext;
     16 class XPCJSRuntime;
     17 class XPCContext;
     18 class XPCCallContext;
     19 
     20 class XPCJSThrower;
     21 
     22 class nsXPCWrappedJS;
     23 
     24 class XPCNativeMember;
     25 class XPCNativeInterface;
     26 class XPCNativeSet;
     27 
     28 class XPCWrappedNative;
     29 class XPCWrappedNativeProto;
     30 class XPCWrappedNativeTearOff;
     31 
     32 class JSObject2WrappedJSMap;
     33 class Native2WrappedNativeMap;
     34 class IID2NativeInterfaceMap;
     35 class ClassInfo2NativeSetMap;
     36 class ClassInfo2WrappedNativeProtoMap;
     37 class NativeSetMap;
     38 class JSObject2JSObjectMap;
     39 
     40 class nsXPCComponents;
     41 class nsXPCComponents_Interfaces;
     42 class nsXPCComponents_Classes;
     43 class nsXPCComponents_Results;
     44 class nsXPCComponents_ID;
     45 class nsXPCComponents_Exception;
     46 class nsXPCComponents_Constructor;
     47 class nsXPCComponents_Utils;
     48 
     49 class AutoMarkingPtr;
     50 
     51 #endif /* xpcforwards_h___ */