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

Side by Side Diff: remoting/host/desktop_environment.h

Issue 1033913003: Touch Events capability negotiation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: back to setting a flag on DesktopEnvironmentFactory 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 (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 #ifndef REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ 5 #ifndef REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
6 #define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ 6 #define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // Enables or disables the curtain mode. 76 // Enables or disables the curtain mode.
77 virtual void SetEnableCurtaining(bool enable) {} 77 virtual void SetEnableCurtaining(bool enable) {}
78 78
79 // Returns |true| if created |DesktopEnvironment| instances support audio 79 // Returns |true| if created |DesktopEnvironment| instances support audio
80 // capture. 80 // capture.
81 virtual bool SupportsAudioCapture() const = 0; 81 virtual bool SupportsAudioCapture() const = 0;
82 82
83 // Enables or disables gnubby authentication. 83 // Enables or disables gnubby authentication.
84 virtual void SetEnableGnubbyAuth(bool enable) {} 84 virtual void SetEnableGnubbyAuth(bool enable) {}
85
86 // Enables or disables multi touch.
87 virtual void SetEnableMultiTouch(bool enable) {}
Wez 2015/04/21 02:12:12 See comment re naming of this feature. IMO this s
Rintaro Kuroiwa 2015/04/22 19:55:59 Removed.
85 }; 88 };
86 89
87 } // namespace remoting 90 } // namespace remoting
88 91
89 #endif // REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ 92 #endif // REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698