summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-22 03:48:03 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-22 03:48:03 +0000
commit673db3e4dd66607d3caf2a4ad3d4e3b2f5a5148a (patch)
tree1c11089953724f4e444b20dc5f08a6a7d77005ec /remoting
parented347a12146a1efa9f539f98f92b14fea1b3c004 (diff)
downloadchromium_src-673db3e4dd66607d3caf2a4ad3d4e3b2f5a5148a.zip
chromium_src-673db3e4dd66607d3caf2a4ad3d4e3b2f5a5148a.tar.gz
chromium_src-673db3e4dd66607d3caf2a4ad3d4e3b2f5a5148a.tar.bz2
[Chromoting] Remove event_executor_fake (no longer used)
BUG= Review URL: https://chromiumcodereview.appspot.com/12326021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/host/event_executor_fake.cc29
-rw-r--r--remoting/host/event_executor_fake.h35
-rw-r--r--remoting/remoting.gyp2
3 files changed, 0 insertions, 66 deletions
diff --git a/remoting/host/event_executor_fake.cc b/remoting/host/event_executor_fake.cc
deleted file mode 100644
index df8155e..0000000
--- a/remoting/host/event_executor_fake.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "remoting/host/event_executor_fake.h"
-
-namespace remoting {
-
-EventExecutorFake::EventExecutorFake() {
-}
-
-EventExecutorFake::~EventExecutorFake() {
-}
-
-void EventExecutorFake::InjectClipboardEvent(
- const protocol::ClipboardEvent& event) {
-}
-
-void EventExecutorFake::InjectKeyEvent(const protocol::KeyEvent& event) {
-}
-
-void EventExecutorFake::InjectMouseEvent(const protocol::MouseEvent& event) {
-}
-
-void EventExecutorFake::Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) {
-}
-
-} // namespace remoting
diff --git a/remoting/host/event_executor_fake.h b/remoting/host/event_executor_fake.h
deleted file mode 100644
index 4172d4e..0000000
--- a/remoting/host/event_executor_fake.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef REMOTING_HOST_EVENT_EXECUTOR_FAKE_H_
-#define REMOTING_HOST_EVENT_EXECUTOR_FAKE_H_
-
-#include "remoting/host/event_executor.h"
-
-namespace remoting {
-
-// A dummy implementation of |EventExecutor| that does nothing.
-class EventExecutorFake : public EventExecutor {
- public:
- EventExecutorFake();
- virtual ~EventExecutorFake();
-
- // ClipboardStub interface.
- virtual void InjectClipboardEvent(
- const protocol::ClipboardEvent& event) OVERRIDE;
-
- // InputStub interface.
- virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
- virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE;
-
- virtual void Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(EventExecutorFake);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_HOST_EVENT_EXECUTOR_FAKE_H_
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index c27d57a..fe04c52 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -327,8 +327,6 @@
'host/dns_blackhole_checker.cc',
'host/dns_blackhole_checker.h',
'host/event_executor.h',
- 'host/event_executor_fake.cc',
- 'host/event_executor_fake.h',
'host/event_executor_linux.cc',
'host/event_executor_mac.cc',
'host/event_executor_win.cc',