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 #include "remoting/host/ipc_event_executor.h" | 5 #include "remoting/host/ipc_input_injector.h" |
6 | 6 |
7 #include "remoting/host/desktop_session_proxy.h" | 7 #include "remoting/host/desktop_session_proxy.h" |
8 | 8 |
9 namespace remoting { | 9 namespace remoting { |
10 | 10 |
11 IpcEventExecutor::IpcEventExecutor( | 11 IpcInputInjector::IpcInputInjector( |
12 scoped_refptr<DesktopSessionProxy> desktop_session_proxy) | 12 scoped_refptr<DesktopSessionProxy> desktop_session_proxy) |
13 : desktop_session_proxy_(desktop_session_proxy) { | 13 : desktop_session_proxy_(desktop_session_proxy) { |
14 } | 14 } |
15 | 15 |
16 IpcEventExecutor::~IpcEventExecutor() { | 16 IpcInputInjector::~IpcInputInjector() { |
17 } | 17 } |
18 | 18 |
19 void IpcEventExecutor::InjectClipboardEvent( | 19 void IpcInputInjector::InjectClipboardEvent( |
20 const protocol::ClipboardEvent& event) { | 20 const protocol::ClipboardEvent& event) { |
21 desktop_session_proxy_->InjectClipboardEvent(event); | 21 desktop_session_proxy_->InjectClipboardEvent(event); |
22 } | 22 } |
23 | 23 |
24 void IpcEventExecutor::InjectKeyEvent(const protocol::KeyEvent& event) { | 24 void IpcInputInjector::InjectKeyEvent(const protocol::KeyEvent& event) { |
25 desktop_session_proxy_->InjectKeyEvent(event); | 25 desktop_session_proxy_->InjectKeyEvent(event); |
26 } | 26 } |
27 | 27 |
28 void IpcEventExecutor::InjectMouseEvent(const protocol::MouseEvent& event) { | 28 void IpcInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) { |
29 desktop_session_proxy_->InjectMouseEvent(event); | 29 desktop_session_proxy_->InjectMouseEvent(event); |
30 } | 30 } |
31 | 31 |
32 void IpcEventExecutor::Start( | 32 void IpcInputInjector::Start( |
33 scoped_ptr<protocol::ClipboardStub> client_clipboard) { | 33 scoped_ptr<protocol::ClipboardStub> client_clipboard) { |
34 desktop_session_proxy_->StartEventExecutor(client_clipboard.Pass()); | 34 desktop_session_proxy_->StartInputInjector(client_clipboard.Pass()); |
35 } | 35 } |
36 | 36 |
37 } // namespace remoting | 37 } // namespace remoting |
OLD | NEW |