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

Side by Side Diff: remoting/host/ipc_event_executor.cc

Issue 12760012: Rename EventExecutor to InputInjector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace some missed occurrences and remove unused include. Created 7 years, 9 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/ipc_event_executor.h ('k') | remoting/host/ipc_input_injector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "remoting/host/ipc_event_executor.h"
6
7 #include "remoting/host/desktop_session_proxy.h"
8
9 namespace remoting {
10
11 IpcEventExecutor::IpcEventExecutor(
12 scoped_refptr<DesktopSessionProxy> desktop_session_proxy)
13 : desktop_session_proxy_(desktop_session_proxy) {
14 }
15
16 IpcEventExecutor::~IpcEventExecutor() {
17 }
18
19 void IpcEventExecutor::InjectClipboardEvent(
20 const protocol::ClipboardEvent& event) {
21 desktop_session_proxy_->InjectClipboardEvent(event);
22 }
23
24 void IpcEventExecutor::InjectKeyEvent(const protocol::KeyEvent& event) {
25 desktop_session_proxy_->InjectKeyEvent(event);
26 }
27
28 void IpcEventExecutor::InjectMouseEvent(const protocol::MouseEvent& event) {
29 desktop_session_proxy_->InjectMouseEvent(event);
30 }
31
32 void IpcEventExecutor::Start(
33 scoped_ptr<protocol::ClipboardStub> client_clipboard) {
34 desktop_session_proxy_->StartEventExecutor(client_clipboard.Pass());
35 }
36
37 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/ipc_event_executor.h ('k') | remoting/host/ipc_input_injector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698