| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/single_window_input_injector.h" | 5 #include "remoting/host/single_window_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 | 9 |
| 10 #include "base/mac/foundation_util.h" | 10 #include "base/mac/foundation_util.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 class SingleWindowInputInjectorMac : public SingleWindowInputInjector { | 22 class SingleWindowInputInjectorMac : public SingleWindowInputInjector { |
| 23 public: | 23 public: |
| 24 SingleWindowInputInjectorMac( | 24 SingleWindowInputInjectorMac( |
| 25 webrtc::WindowId window_id, | 25 webrtc::WindowId window_id, |
| 26 scoped_ptr<InputInjector> input_injector); | 26 scoped_ptr<InputInjector> input_injector); |
| 27 virtual ~SingleWindowInputInjectorMac(); | 27 virtual ~SingleWindowInputInjectorMac(); |
| 28 | 28 |
| 29 // InputInjector interface. | 29 // InputInjector interface. |
| 30 virtual void Start( | 30 virtual void Start( |
| 31 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; | 31 scoped_ptr<protocol::ClipboardStub> client_clipboard) override; |
| 32 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; | 32 virtual void InjectKeyEvent(const KeyEvent& event) override; |
| 33 virtual void InjectTextEvent(const TextEvent& event) OVERRIDE; | 33 virtual void InjectTextEvent(const TextEvent& event) override; |
| 34 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; | 34 virtual void InjectMouseEvent(const MouseEvent& event) override; |
| 35 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; | 35 virtual void InjectClipboardEvent(const ClipboardEvent& event) override; |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 CGRect FindCGRectOfWindow(); | 38 CGRect FindCGRectOfWindow(); |
| 39 | 39 |
| 40 CGWindowID window_id_; | 40 CGWindowID window_id_; |
| 41 scoped_ptr<InputInjector> input_injector_; | 41 scoped_ptr<InputInjector> input_injector_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(SingleWindowInputInjectorMac); | 43 DISALLOW_COPY_AND_ASSIGN(SingleWindowInputInjectorMac); |
| 44 }; | 44 }; |
| 45 | 45 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 scoped_ptr<InputInjector> SingleWindowInputInjector::CreateForWindow( | 158 scoped_ptr<InputInjector> SingleWindowInputInjector::CreateForWindow( |
| 159 webrtc::WindowId window_id, | 159 webrtc::WindowId window_id, |
| 160 scoped_ptr<InputInjector> input_injector) { | 160 scoped_ptr<InputInjector> input_injector) { |
| 161 scoped_ptr<SingleWindowInputInjectorMac> injector( | 161 scoped_ptr<SingleWindowInputInjectorMac> injector( |
| 162 new SingleWindowInputInjectorMac(window_id, input_injector.Pass())); | 162 new SingleWindowInputInjectorMac(window_id, input_injector.Pass())); |
| 163 return injector.Pass(); | 163 return injector.Pass(); |
| 164 } | 164 } |
| 165 | 165 |
| 166 } // namespace remoting | 166 } // namespace remoting |
| OLD | NEW |