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

Unified Diff: remoting/host/ipc_input_injector.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/ipc_input_injector.h ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_input_injector.cc
diff --git a/remoting/host/ipc_event_executor.cc b/remoting/host/ipc_input_injector.cc
similarity index 63%
rename from remoting/host/ipc_event_executor.cc
rename to remoting/host/ipc_input_injector.cc
index 33d41ae5a35329b929808bb6fd1350a5a3210121..7e63a4e0bdba71272c76f6d60c4ea757f3c4409f 100644
--- a/remoting/host/ipc_event_executor.cc
+++ b/remoting/host/ipc_input_injector.cc
@@ -2,36 +2,36 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "remoting/host/ipc_event_executor.h"
+#include "remoting/host/ipc_input_injector.h"
#include "remoting/host/desktop_session_proxy.h"
namespace remoting {
-IpcEventExecutor::IpcEventExecutor(
+IpcInputInjector::IpcInputInjector(
scoped_refptr<DesktopSessionProxy> desktop_session_proxy)
: desktop_session_proxy_(desktop_session_proxy) {
}
-IpcEventExecutor::~IpcEventExecutor() {
+IpcInputInjector::~IpcInputInjector() {
}
-void IpcEventExecutor::InjectClipboardEvent(
+void IpcInputInjector::InjectClipboardEvent(
const protocol::ClipboardEvent& event) {
desktop_session_proxy_->InjectClipboardEvent(event);
}
-void IpcEventExecutor::InjectKeyEvent(const protocol::KeyEvent& event) {
+void IpcInputInjector::InjectKeyEvent(const protocol::KeyEvent& event) {
desktop_session_proxy_->InjectKeyEvent(event);
}
-void IpcEventExecutor::InjectMouseEvent(const protocol::MouseEvent& event) {
+void IpcInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) {
desktop_session_proxy_->InjectMouseEvent(event);
}
-void IpcEventExecutor::Start(
+void IpcInputInjector::Start(
scoped_ptr<protocol::ClipboardStub> client_clipboard) {
- desktop_session_proxy_->StartEventExecutor(client_clipboard.Pass());
+ desktop_session_proxy_->StartInputInjector(client_clipboard.Pass());
}
} // namespace remoting
« no previous file with comments | « remoting/host/ipc_input_injector.h ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698