OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_HOST_HOST_SERVICE_WIN_H_ | 5 #ifndef REMOTING_HOST_WIN_HOST_SERVICE_H_ |
6 #define REMOTING_HOST_HOST_SERVICE_WIN_H_ | 6 #define REMOTING_HOST_WIN_HOST_SERVICE_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
14 | 14 |
15 #include "remoting/host/wts_console_monitor_win.h" | 15 #include "remoting/host/win/wts_console_monitor.h" |
16 | 16 |
17 class CommandLine; | 17 class CommandLine; |
18 class MessageLoop; | 18 class MessageLoop; |
19 | 19 |
20 namespace remoting { | 20 namespace remoting { |
21 | 21 |
22 class WtsConsoleObserver; | 22 class WtsConsoleObserver; |
23 | 23 |
24 class HostService : public WtsConsoleMonitor { | 24 class HostService : public WtsConsoleMonitor { |
25 public: | 25 public: |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 base::WaitableEvent stopped_event_; | 100 base::WaitableEvent stopped_event_; |
101 | 101 |
102 // Singleton. | 102 // Singleton. |
103 friend struct DefaultSingletonTraits<HostService>; | 103 friend struct DefaultSingletonTraits<HostService>; |
104 | 104 |
105 DISALLOW_COPY_AND_ASSIGN(HostService); | 105 DISALLOW_COPY_AND_ASSIGN(HostService); |
106 }; | 106 }; |
107 | 107 |
108 } // namespace remoting | 108 } // namespace remoting |
109 | 109 |
110 #endif // REMOTING_HOST_HOST_SERVICE_WIN_H_ | 110 #endif // REMOTING_HOST_WIN_HOST_SERVICE_H_ |
OLD | NEW |