Index: remoting/host/event_executor_win.h |
diff --git a/remoting/host/event_executor_win.h b/remoting/host/event_executor_win.h |
deleted file mode 100644 |
index 949831906285012131a7b3f832123b84cab2eff3..0000000000000000000000000000000000000000 |
--- a/remoting/host/event_executor_win.h |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-// Copyright (c) 2011 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_WIN_H_ |
-#define REMOTING_HOST_EVENT_EXECUTOR_WIN_H_ |
- |
-#include <vector> |
- |
-#include "base/task.h" |
-#include "base/basictypes.h" |
-#include "base/memory/scoped_ptr.h" |
-#include "remoting/host/event_executor.h" |
-#include "remoting/protocol/input_stub.h" |
- |
-namespace remoting { |
- |
-class EventExecutorWinPimpl; |
- |
-// A class to generate events on Windows. |
-class EventExecutorWin : public protocol::InputStub { |
- public: |
- EventExecutorWin(MessageLoopForUI* message_loop, Capturer* capturer); |
- virtual ~EventExecutorWin(); |
- |
- virtual void InjectKeyEvent(const protocol::KeyEvent* event, Task* done); |
- virtual void InjectMouseEvent(const protocol::MouseEvent* event, Task* done); |
- |
- private: |
- void HandleKey(const protocol::KeyEvent* event); |
- void HandleMouse(const protocol::MouseEvent* event); |
- |
- MessageLoopForUI* message_loop_; |
- Capturer* capturer_; |
- |
- DISALLOW_COPY_AND_ASSIGN(EventExecutorWin); |
-}; |
- |
-} // namespace remoting |
- |
-DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::EventExecutorWin); |
- |
-#endif // REMOTING_HOST_EVENT_EXECUTOR_WIN_H_ |