Changeset 22305 in vbox for trunk/src/VBox/Main/xpcom
- Timestamp:
- Aug 17, 2009 5:37:41 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51179
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xpcom/module.cpp
r19817 r22305 47 47 #include "ConsoleImpl.h" 48 48 #include "ConsoleVRDPServer.h" 49 #include "VirtualBoxCallbackImpl.h" 49 50 50 51 #include "Logging.h" … … 79 80 NS_DECL_CLASSINFO(Console) 80 81 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Console, IConsole) 81 82 NS_DECL_CLASSINFO(VirtualBoxCallback) 83 NS_IMPL_THREADSAFE_ISUPPORTS3_CI(VirtualBoxCallback, IVirtualBoxCallback, IConsoleCallback, ILocalOwner) 82 84 /** 83 85 * Singleton class factory that holds a reference to the created instance … … 134 136 NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC (Session) 135 137 138 NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC (VirtualBoxCallback) 139 136 140 137 141 /** … … 153 157 NULL, // language helper 154 158 &NS_CLASSINFO_NAME(Session) // global class info & flags 159 }, 160 { 161 "VirtualBoxCallback component", // description 162 NS_VIRTUALBOXCALLBACK_CID, NS_VIRTUALBOXCALLBACK_CONTRACTID, // CID/ContractID 163 VirtualBoxCallbackConstructor, // constructor function 164 NULL, // registration function 165 NULL, // deregistration function 166 // SessionClassFactory::releaseInstance, 167 NULL, // destructor function 168 NS_CI_INTERFACE_GETTER_NAME(VirtualBoxCallback), // interfaces function 169 NULL, // language helper 170 &NS_CLASSINFO_NAME(VirtualBoxCallback) // global class info & flags 155 171 } 172 156 173 }; 157 174
Note:
See TracChangeset
for help on using the changeset viewer.