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/fake_desktop_environment.h" | 5 #include "remoting/host/fake_desktop_environment.h" |
6 | 6 |
7 #include "remoting/host/audio_capturer.h" | 7 #include "remoting/host/audio_capturer.h" |
8 #include "remoting/host/fake_desktop_capturer.h" | 8 #include "remoting/host/fake_desktop_capturer.h" |
9 #include "remoting/host/gnubby_auth_handler.h" | 9 #include "remoting/host/gnubby_auth_handler.h" |
10 #include "remoting/host/input_injector.h" | 10 #include "remoting/host/input_injector.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 void FakeInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) { | 27 void FakeInputInjector::InjectMouseEvent(const protocol::MouseEvent& event) { |
28 } | 28 } |
29 | 29 |
30 void FakeInputInjector::InjectTouchEvent(const protocol::TouchEvent& event) { | 30 void FakeInputInjector::InjectTouchEvent(const protocol::TouchEvent& event) { |
31 } | 31 } |
32 | 32 |
33 void FakeInputInjector::InjectClipboardEvent( | 33 void FakeInputInjector::InjectClipboardEvent( |
34 const protocol::ClipboardEvent& event) { | 34 const protocol::ClipboardEvent& event) { |
35 } | 35 } |
36 | 36 |
| 37 bool FakeInputInjector::CanInjectTouch() { |
| 38 return false; |
| 39 } |
| 40 |
37 FakeScreenControls::FakeScreenControls() {} | 41 FakeScreenControls::FakeScreenControls() {} |
38 FakeScreenControls::~FakeScreenControls() {} | 42 FakeScreenControls::~FakeScreenControls() {} |
39 | 43 |
40 void FakeScreenControls::SetScreenResolution( | 44 void FakeScreenControls::SetScreenResolution( |
41 const ScreenResolution& resolution) { | 45 const ScreenResolution& resolution) { |
42 } | 46 } |
43 | 47 |
44 FakeDesktopEnvironment::FakeDesktopEnvironment() {} | 48 FakeDesktopEnvironment::FakeDesktopEnvironment() {} |
45 | 49 |
46 FakeDesktopEnvironment::~FakeDesktopEnvironment() {} | 50 FakeDesktopEnvironment::~FakeDesktopEnvironment() {} |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 void FakeDesktopEnvironmentFactory::SetEnableCurtaining(bool enable) {} | 100 void FakeDesktopEnvironmentFactory::SetEnableCurtaining(bool enable) {} |
97 | 101 |
98 bool FakeDesktopEnvironmentFactory::SupportsAudioCapture() const { | 102 bool FakeDesktopEnvironmentFactory::SupportsAudioCapture() const { |
99 return false; | 103 return false; |
100 } | 104 } |
101 | 105 |
102 void FakeDesktopEnvironmentFactory::SetEnableGnubbyAuth(bool enable) {} | 106 void FakeDesktopEnvironmentFactory::SetEnableGnubbyAuth(bool enable) {} |
103 | 107 |
104 | 108 |
105 } // namespace remoting | 109 } // namespace remoting |
OLD | NEW |