diff options
Diffstat (limited to 'remoting/host/win/host_service.h')
-rw-r--r-- | remoting/host/win/host_service.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/remoting/host/win/host_service.h b/remoting/host/win/host_service.h index 7c0b05d..942f3fa 100644 --- a/remoting/host/win/host_service.h +++ b/remoting/host/win/host_service.h @@ -6,7 +6,6 @@ #define REMOTING_HOST_WIN_HOST_SERVICE_H_ #include <windows.h> -#include <winternl.h> #include <list> @@ -19,7 +18,6 @@ class CommandLine; namespace base { -class ScopedNativeLibrary; class SingleThreadTaskRunner; } // namespace base @@ -49,21 +47,6 @@ class HostService : public WtsTerminalMonitor { HostService(); ~HostService(); - // Sets |*endpoint| to the endpoint of the client attached to |session_id|. - // If |session_id| is attached to the physical console net::IPEndPoint() is - // used. Returns false if the endpoint cannot be queried (if there is no - // client attached to |session_id| for instance). - bool GetEndpointForSessionId(uint32 session_id, net::IPEndPoint* endpoint); - - // Returns id of the session that |client_endpoint| is attached. - // |kInvalidSessionId| is returned if none of the sessions is currently - // attahced to |client_endpoint|. - uint32 GetSessionIdForEndpoint(const net::IPEndPoint& client_endpoint); - - // Gets the pointer to winsta!WinStationQueryInformationW(). Returns false if - // en error occurs. - bool LoadWinStationLibrary(); - // Notifies the service of changes in session state. void OnSessionChange(uint32 event, uint32 session_id); @@ -118,12 +101,6 @@ class HostService : public WtsTerminalMonitor { // The list of observers receiving session notifications. std::list<RegisteredObserver> observers_; - // Handle of dynamically loaded winsta.dll. - scoped_ptr<base::ScopedNativeLibrary> winsta_; - - // Points to winsta!WinStationQueryInformationW(). - PWINSTATIONQUERYINFORMATIONW win_station_query_information_; - scoped_ptr<Stoppable> child_; // Service message loop. |