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 #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 Loading... |
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) {} |
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_ |
OLD | NEW |