| 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 <X11/extensions/XInput.h> | 7 #include <X11/extensions/XInput.h> |
| 8 #include <X11/extensions/XTest.h> | 8 #include <X11/extensions/XTest.h> |
| 9 #include <X11/Xlib.h> | 9 #include <X11/Xlib.h> |
| 10 #include <X11/XKBlib.h> | 10 #include <X11/XKBlib.h> |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // A class to generate events on Linux. | 90 // A class to generate events on Linux. |
| 91 class InputInjectorLinux : public InputInjector { | 91 class InputInjectorLinux : public InputInjector { |
| 92 public: | 92 public: |
| 93 explicit InputInjectorLinux( | 93 explicit InputInjectorLinux( |
| 94 scoped_refptr<base::SingleThreadTaskRunner> task_runner); | 94 scoped_refptr<base::SingleThreadTaskRunner> task_runner); |
| 95 virtual ~InputInjectorLinux(); | 95 virtual ~InputInjectorLinux(); |
| 96 | 96 |
| 97 bool Init(); | 97 bool Init(); |
| 98 | 98 |
| 99 // Clipboard stub interface. | 99 // Clipboard stub interface. |
| 100 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; | 100 virtual void InjectClipboardEvent(const ClipboardEvent& event) override; |
| 101 | 101 |
| 102 // InputStub interface. | 102 // InputStub interface. |
| 103 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; | 103 virtual void InjectKeyEvent(const KeyEvent& event) override; |
| 104 virtual void InjectTextEvent(const TextEvent& event) OVERRIDE; | 104 virtual void InjectTextEvent(const TextEvent& event) override; |
| 105 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; | 105 virtual void InjectMouseEvent(const MouseEvent& event) override; |
| 106 | 106 |
| 107 // InputInjector interface. | 107 // InputInjector interface. |
| 108 virtual void Start( | 108 virtual void Start( |
| 109 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; | 109 scoped_ptr<protocol::ClipboardStub> client_clipboard) override; |
| 110 | 110 |
| 111 private: | 111 private: |
| 112 // The actual implementation resides in InputInjectorLinux::Core class. | 112 // The actual implementation resides in InputInjectorLinux::Core class. |
| 113 class Core : public base::RefCountedThreadSafe<Core> { | 113 class Core : public base::RefCountedThreadSafe<Core> { |
| 114 public: | 114 public: |
| 115 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner); | 115 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner); |
| 116 | 116 |
| 117 bool Init(); | 117 bool Init(); |
| 118 | 118 |
| 119 // Mirrors the ClipboardStub interface. | 119 // Mirrors the ClipboardStub interface. |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, | 605 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, |
| 606 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { | 606 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { |
| 607 scoped_ptr<InputInjectorLinux> injector( | 607 scoped_ptr<InputInjectorLinux> injector( |
| 608 new InputInjectorLinux(main_task_runner)); | 608 new InputInjectorLinux(main_task_runner)); |
| 609 if (!injector->Init()) | 609 if (!injector->Init()) |
| 610 return nullptr; | 610 return nullptr; |
| 611 return injector.Pass(); | 611 return injector.Pass(); |
| 612 } | 612 } |
| 613 | 613 |
| 614 } // namespace remoting | 614 } // namespace remoting |
| OLD | NEW |