Changeset 56595 in vbox
- Timestamp:
- Jun 23, 2015 11:23:17 AM (9 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r56477 r56595 14743 14743 ReturnComNotImplemented(); 14744 14744 } 14745 14746 /* This isn't handled entirely by the wrapper generator yet. */ 14747 #ifdef VBOX_WITH_XPCOM 14748 NS_DECL_CLASSINFO(SessionMachine) 14749 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(SessionMachine, IMachine, IInternalMachineControl) 14750 14751 NS_DECL_CLASSINFO(SnapshotMachine) 14752 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SnapshotMachine, IMachine) 14753 #endif -
trunk/src/VBox/Main/src-server/ProgressProxyImpl.cpp
r56574 r56595 692 692 } 693 693 694 #ifdef VBOX_WITH_XPCOM 695 NS_DECL_CLASSINFO(ProgressProxy) 696 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(ProgressProxy, IProgress) 697 #endif 698 694 699 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ 695 -
trunk/src/VBox/Main/src-server/xpcom/server.cpp
r56587 r56595 100 100 NS_DECL_CI_INTERFACE_GETTER(VirtualBoxWrap) 101 101 102 // The declarations/implementations of the various XPCOM helper data structures103 // and functions have to be removed bit by bit, as the conversion to the104 // automatically generated wrappers makes them obsolete.105 106 /* implement nsISupports parts of our objects with support for nsIClassInfo */107 NS_DECL_CLASSINFO(SessionMachine)108 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(SessionMachine, IMachine, IInternalMachineControl)109 110 NS_DECL_CLASSINFO(SnapshotMachine)111 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SnapshotMachine, IMachine)112 113 NS_DECL_CLASSINFO(ProgressProxy)114 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(ProgressProxy, IProgress)115 116 102 //////////////////////////////////////////////////////////////////////////////// 117 103
Note:
See TracChangeset
for help on using the changeset viewer.