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_SESSION_EVENT_EXECUTOR_WIN_H_ | 5 #ifndef REMOTING_HOST_SESSION_EVENT_EXECUTOR_WIN_H_ |
6 #define REMOTING_HOST_SESSION_EVENT_EXECUTOR_WIN_H_ | 6 #define REMOTING_HOST_SESSION_EVENT_EXECUTOR_WIN_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "ipc/ipc_channel.h" | 13 #include "ipc/ipc_channel.h" |
14 #include "remoting/host/event_executor.h" | 14 #include "remoting/host/event_executor.h" |
15 #include "remoting/host/win/scoped_thread_desktop.h" | 15 #include "remoting/host/win/scoped_thread_desktop.h" |
16 #include "remoting/protocol/host_event_stub.h" | |
17 | 16 |
18 namespace base { | 17 namespace base { |
19 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
20 } // namespace base | 19 } // namespace base |
21 | 20 |
22 namespace IPC { | 21 namespace IPC { |
23 class ChannelProxy; | 22 class ChannelProxy; |
24 } // namespace IPC | 23 } // namespace IPC |
25 | 24 |
26 namespace remoting { | 25 namespace remoting { |
27 | 26 |
28 class SessionEventExecutorWin : public EventExecutor, | 27 class SessionEventExecutorWin : public EventExecutor, |
29 public IPC::Listener { | 28 public IPC::Listener { |
30 public: | 29 public: |
31 SessionEventExecutorWin( | 30 SessionEventExecutorWin( |
32 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, | 31 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, |
33 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, | 32 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, |
34 scoped_ptr<EventExecutor> nested_executor); | 33 scoped_ptr<EventExecutor> nested_executor); |
35 ~SessionEventExecutorWin(); | 34 ~SessionEventExecutorWin(); |
36 | 35 |
37 // EventExecutor implementation. | 36 // EventExecutor implementation. |
38 virtual void OnSessionStarted( | 37 virtual void OnSessionStarted( |
39 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; | 38 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; |
40 virtual void OnSessionFinished() OVERRIDE; | 39 virtual void OnSessionFinished() OVERRIDE; |
41 | 40 |
42 // protocol::HostStub implementation. | 41 // protocol::ClipboardStub implementation. |
43 virtual void InjectClipboardEvent( | 42 virtual void InjectClipboardEvent( |
44 const protocol::ClipboardEvent& event) OVERRIDE; | 43 const protocol::ClipboardEvent& event) OVERRIDE; |
| 44 |
| 45 // protocol::InputStub implementation. |
45 virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE; | 46 virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE; |
46 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE; | 47 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE; |
47 | 48 |
48 // IPC::Listener implementation. | 49 // IPC::Listener implementation. |
49 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 50 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
50 | 51 |
51 private: | 52 private: |
52 // Switches to the desktop receiving a user input if different from | 53 // Switches to the desktop receiving a user input if different from |
53 // the current one. | 54 // the current one. |
54 void SwitchToInputDesktop(); | 55 void SwitchToInputDesktop(); |
(...skipping 13 matching lines...) Expand all Loading... |
68 | 69 |
69 base::WeakPtrFactory<SessionEventExecutorWin> weak_ptr_factory_; | 70 base::WeakPtrFactory<SessionEventExecutorWin> weak_ptr_factory_; |
70 base::WeakPtr<SessionEventExecutorWin> weak_ptr_; | 71 base::WeakPtr<SessionEventExecutorWin> weak_ptr_; |
71 | 72 |
72 DISALLOW_COPY_AND_ASSIGN(SessionEventExecutorWin); | 73 DISALLOW_COPY_AND_ASSIGN(SessionEventExecutorWin); |
73 }; | 74 }; |
74 | 75 |
75 } // namespace remoting | 76 } // namespace remoting |
76 | 77 |
77 #endif // REMOTING_HOST_SESSION_EVENT_EXECUTOR_WIN_H_ | 78 #endif // REMOTING_HOST_SESSION_EVENT_EXECUTOR_WIN_H_ |
OLD | NEW |