From 673db3e4dd66607d3caf2a4ad3d4e3b2f5a5148a Mon Sep 17 00:00:00 2001 From: "garykac@chromium.org" Date: Fri, 22 Feb 2013 03:48:03 +0000 Subject: [PATCH] [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 --- remoting/host/event_executor_fake.cc | 29 ----------------------------- remoting/host/event_executor_fake.h | 35 ----------------------------------- remoting/remoting.gyp | 2 -- 3 files changed, 66 deletions(-) delete mode 100644 remoting/host/event_executor_fake.cc delete mode 100644 remoting/host/event_executor_fake.h diff --git a/remoting/host/event_executor_fake.cc b/remoting/host/event_executor_fake.cc deleted file mode 100644 index df8155e0afa6..000000000000 --- 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 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 4172d4e1c31b..000000000000 --- 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 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 c27d57a1cebe..fe04c523021e 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', -- 2.11.4.GIT