Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: remoting/host/win/wts_console_monitor.h

Issue 10832068: Moving Windows-only files: remoting/host -> remoting/host/win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/win/scoped_thread_desktop.cc ('k') | remoting/host/win/wts_console_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_WTS_CONSOLE_MONITOR_WIN_H_ 5 #ifndef REMOTING_HOST_WIN_WTS_CONSOLE_MONITOR_H_
6 #define REMOTING_HOST_WTS_CONSOLE_MONITOR_WIN_H_ 6 #define REMOTING_HOST_WIN_WTS_CONSOLE_MONITOR_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 11
12 namespace remoting { 12 namespace remoting {
13 13
14 class WtsConsoleObserver; 14 class WtsConsoleObserver;
15 15
16 class WtsConsoleMonitor { 16 class WtsConsoleMonitor {
17 public: 17 public:
18 virtual ~WtsConsoleMonitor() {} 18 virtual ~WtsConsoleMonitor() {}
19 19
20 // Registers an observer to receive notifications about a particular WTS 20 // Registers an observer to receive notifications about a particular WTS
21 // console (i.e. the physical console or a remote console). 21 // console (i.e. the physical console or a remote console).
22 virtual void AddWtsConsoleObserver(WtsConsoleObserver* observer) = 0; 22 virtual void AddWtsConsoleObserver(WtsConsoleObserver* observer) = 0;
23 23
24 // Unregisters a previously registered observer. 24 // Unregisters a previously registered observer.
25 virtual void RemoveWtsConsoleObserver(WtsConsoleObserver* observer) = 0; 25 virtual void RemoveWtsConsoleObserver(WtsConsoleObserver* observer) = 0;
26 26
27 protected: 27 protected:
28 WtsConsoleMonitor() {} 28 WtsConsoleMonitor() {}
29 29
30 private: 30 private:
31 DISALLOW_COPY_AND_ASSIGN(WtsConsoleMonitor); 31 DISALLOW_COPY_AND_ASSIGN(WtsConsoleMonitor);
32 }; 32 };
33 33
34 } // namespace remoting 34 } // namespace remoting
35 35
36 #endif // REMOTING_HOST_WTS_CONSOLE_MONITOR_WIN_H_ 36 #endif // REMOTING_HOST_WIN_WTS_CONSOLE_MONITOR_H_
OLDNEW
« no previous file with comments | « remoting/host/win/scoped_thread_desktop.cc ('k') | remoting/host/win/wts_console_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698