| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/input_injector.h" | 5 #include "remoting/host/input_injector.h" |
| 6 | 6 |
| 7 #include <ApplicationServices/ApplicationServices.h> | 7 #include <ApplicationServices/ApplicationServices.h> |
| 8 #include <Carbon/Carbon.h> | 8 #include <Carbon/Carbon.h> |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 using protocol::ClipboardEvent; | 53 using protocol::ClipboardEvent; |
| 54 using protocol::KeyEvent; | 54 using protocol::KeyEvent; |
| 55 using protocol::TextEvent; | 55 using protocol::TextEvent; |
| 56 using protocol::MouseEvent; | 56 using protocol::MouseEvent; |
| 57 | 57 |
| 58 // A class to generate events on Mac. | 58 // A class to generate events on Mac. |
| 59 class InputInjectorMac : public InputInjector { | 59 class InputInjectorMac : public InputInjector { |
| 60 public: | 60 public: |
| 61 explicit InputInjectorMac( | 61 explicit InputInjectorMac( |
| 62 scoped_refptr<base::SingleThreadTaskRunner> task_runner); | 62 scoped_refptr<base::SingleThreadTaskRunner> task_runner); |
| 63 virtual ~InputInjectorMac(); | 63 ~InputInjectorMac() override; |
| 64 | 64 |
| 65 // ClipboardStub interface. | 65 // ClipboardStub interface. |
| 66 virtual void InjectClipboardEvent(const ClipboardEvent& event) override; | 66 void InjectClipboardEvent(const ClipboardEvent& event) override; |
| 67 | 67 |
| 68 // InputStub interface. | 68 // InputStub interface. |
| 69 virtual void InjectKeyEvent(const KeyEvent& event) override; | 69 void InjectKeyEvent(const KeyEvent& event) override; |
| 70 virtual void InjectTextEvent(const TextEvent& event) override; | 70 void InjectTextEvent(const TextEvent& event) override; |
| 71 virtual void InjectMouseEvent(const MouseEvent& event) override; | 71 void InjectMouseEvent(const MouseEvent& event) override; |
| 72 | 72 |
| 73 // InputInjector interface. | 73 // InputInjector interface. |
| 74 virtual void Start( | 74 void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) override; |
| 75 scoped_ptr<protocol::ClipboardStub> client_clipboard) override; | |
| 76 | 75 |
| 77 private: | 76 private: |
| 78 // The actual implementation resides in InputInjectorMac::Core class. | 77 // The actual implementation resides in InputInjectorMac::Core class. |
| 79 class Core : public base::RefCountedThreadSafe<Core> { | 78 class Core : public base::RefCountedThreadSafe<Core> { |
| 80 public: | 79 public: |
| 81 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner); | 80 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner); |
| 82 | 81 |
| 83 // Mirrors the ClipboardStub interface. | 82 // Mirrors the ClipboardStub interface. |
| 84 void InjectClipboardEvent(const ClipboardEvent& event); | 83 void InjectClipboardEvent(const ClipboardEvent& event); |
| 85 | 84 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 334 |
| 336 } // namespace | 335 } // namespace |
| 337 | 336 |
| 338 scoped_ptr<InputInjector> InputInjector::Create( | 337 scoped_ptr<InputInjector> InputInjector::Create( |
| 339 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, | 338 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, |
| 340 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { | 339 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { |
| 341 return make_scoped_ptr(new InputInjectorMac(main_task_runner)); | 340 return make_scoped_ptr(new InputInjectorMac(main_task_runner)); |
| 342 } | 341 } |
| 343 | 342 |
| 344 } // namespace remoting | 343 } // namespace remoting |
| OLD | NEW |