Index: remoting/host/event_executor_mac.h |
diff --git a/remoting/host/event_executor_mac.h b/remoting/host/event_executor_mac.h |
deleted file mode 100644 |
index 4f84aef4689663c51046e70930786fea9fc70fe0..0000000000000000000000000000000000000000 |
--- a/remoting/host/event_executor_mac.h |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// Copyright (c) 2010 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_MAC_H_ |
-#define REMOTING_HOST_EVENT_EXECUTOR_MAC_H_ |
- |
-#include <vector> |
- |
-#include "base/basictypes.h" |
-#include "remoting/host/event_executor.h" |
-#include "remoting/protocol/input_stub.h" |
- |
-namespace remoting { |
- |
-// A class to generate events on Mac. |
-class EventExecutorMac : public protocol::InputStub { |
- public: |
- EventExecutorMac(MessageLoopForUI* message_loop, Capturer* capturer); |
- virtual ~EventExecutorMac(); |
- |
- virtual void InjectKeyEvent(const protocol::KeyEvent* event, Task* done); |
- virtual void InjectMouseEvent(const protocol::MouseEvent* event, Task* done); |
- |
- private: |
- MessageLoopForUI* message_loop_; |
- Capturer* capturer_; |
- int last_x_, last_y_; |
- int modifiers_, mouse_buttons_; |
- |
- DISALLOW_COPY_AND_ASSIGN(EventExecutorMac); |
-}; |
- |
-} // namespace remoting |
- |
-#endif // REMOTING_HOST_EVENT_EXECUTOR_MAC_H_ |