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

Unified Diff: remoting/host/win/session_desktop_environment.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/win/session_desktop_environment.h ('k') | remoting/host/win/session_event_executor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/session_desktop_environment.cc
diff --git a/remoting/host/win/session_desktop_environment.cc b/remoting/host/win/session_desktop_environment.cc
index fd6ee8577c3c5f722549028b5efa30f296fcf76e..e99a50dad44f455563e53742c39299b26c8b72a9 100644
--- a/remoting/host/win/session_desktop_environment.cc
+++ b/remoting/host/win/session_desktop_environment.cc
@@ -8,8 +8,8 @@
#include "base/single_thread_task_runner.h"
#include "media/video/capture/screen/screen_capturer.h"
#include "remoting/host/audio_capturer.h"
-#include "remoting/host/event_executor.h"
-#include "remoting/host/win/session_event_executor.h"
+#include "remoting/host/input_injector.h"
+#include "remoting/host/win/session_input_injector.h"
namespace remoting {
@@ -21,16 +21,16 @@ SessionDesktopEnvironment::SessionDesktopEnvironment(
SessionDesktopEnvironment::~SessionDesktopEnvironment() {
}
-scoped_ptr<EventExecutor> SessionDesktopEnvironment::CreateEventExecutor(
+scoped_ptr<InputInjector> SessionDesktopEnvironment::CreateInputInjector(
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
DCHECK(CalledOnValidThread());
- scoped_ptr<EventExecutor> event_executor = EventExecutor::Create(
+ scoped_ptr<InputInjector> input_injector = InputInjector::Create(
input_task_runner, ui_task_runner);
- event_executor.reset(new SessionEventExecutorWin(
- input_task_runner, event_executor.Pass(), ui_task_runner, inject_sas_));
- return event_executor.Pass();
+ input_injector.reset(new SessionInputInjectorWin(
+ input_task_runner, input_injector.Pass(), ui_task_runner, inject_sas_));
+ return input_injector.Pass();
}
SessionDesktopEnvironmentFactory::SessionDesktopEnvironmentFactory(
« no previous file with comments | « remoting/host/win/session_desktop_environment.h ('k') | remoting/host/win/session_event_executor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698