summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_mock_objects.cc
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-24 03:42:42 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-24 03:42:42 +0000
commitb0b72f11d870061817de63d71f4b7e4d6583cf28 (patch)
treed92187bd48462ef36e0e20294cf6632c96e099bf /remoting/host/host_mock_objects.cc
parent69abcb227ca8bb3012c383d712d65cf00b7ec834 (diff)
downloadchromium_src-b0b72f11d870061817de63d71f4b7e4d6583cf28.zip
chromium_src-b0b72f11d870061817de63d71f4b7e4d6583cf28.tar.gz
chromium_src-b0b72f11d870061817de63d71f4b7e4d6583cf28.tar.bz2
Rename EventExecutor to InputInjector.
This is part of general naming clean-up under remoting/ and will help keep lambroslambrou@ happy. Review URL: https://chromiumcodereview.appspot.com/12760012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190163 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_mock_objects.cc')
-rw-r--r--remoting/host/host_mock_objects.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/host_mock_objects.cc b/remoting/host/host_mock_objects.cc
index 0dd33e9..5900179 100644
--- a/remoting/host/host_mock_objects.cc
+++ b/remoting/host/host_mock_objects.cc
@@ -12,7 +12,7 @@
#include "remoting/codec/audio_encoder.h"
#include "remoting/codec/video_encoder.h"
#include "remoting/host/audio_capturer.h"
-#include "remoting/host/event_executor.h"
+#include "remoting/host/input_injector.h"
#include "remoting/proto/event.pb.h"
#include "remoting/protocol/transport.h"
@@ -27,10 +27,10 @@ scoped_ptr<AudioCapturer> MockDesktopEnvironment::CreateAudioCapturer(
return scoped_ptr<AudioCapturer>(CreateAudioCapturerPtr(audio_task_runner));
}
-scoped_ptr<EventExecutor> MockDesktopEnvironment::CreateEventExecutor(
+scoped_ptr<InputInjector> MockDesktopEnvironment::CreateInputInjector(
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
- return scoped_ptr<EventExecutor>(CreateEventExecutorPtr(input_task_runner,
+ return scoped_ptr<InputInjector>(CreateInputInjectorPtr(input_task_runner,
ui_task_runner));
}
@@ -56,11 +56,11 @@ scoped_ptr<DesktopEnvironment> MockDesktopEnvironmentFactory::Create(
return scoped_ptr<DesktopEnvironment>(CreatePtr());
}
-MockEventExecutor::MockEventExecutor() {}
+MockInputInjector::MockInputInjector() {}
-MockEventExecutor::~MockEventExecutor() {}
+MockInputInjector::~MockInputInjector() {}
-void MockEventExecutor::Start(
+void MockInputInjector::Start(
scoped_ptr<protocol::ClipboardStub> client_clipboard) {
StartPtr(client_clipboard.get());
}