Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: remoting/host/fake_desktop_environment.cc

Issue 1033913003: Touch Events capability negotiation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: should fix mac build Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698