| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CLIENT_SESSION_CONTROL_H_ | 5 #ifndef REMOTING_HOST_CLIENT_SESSION_CONTROL_H_ |
| 6 #define REMOTING_HOST_CLIENT_SESSION_CONTROL_H_ | 6 #define REMOTING_HOST_CLIENT_SESSION_CONTROL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "remoting/protocol/errors.h" | 8 #include "remoting/protocol/errors.h" |
| 10 | 9 |
| 11 namespace webrtc { | 10 namespace webrtc { |
| 12 class DesktopVector; | 11 class DesktopVector; |
| 13 } // namespace webrtc | 12 } // namespace webrtc |
| 14 | 13 |
| 15 namespace remoting { | 14 namespace remoting { |
| 16 | 15 |
| 17 // Allows the desktop environment to disconnect the client session and | 16 // Allows the desktop environment to disconnect the client session and |
| 18 // to control the remote input handling (i.e. disable, enable, and pause | 17 // to control the remote input handling (i.e. disable, enable, and pause |
| (...skipping 15 matching lines...) Expand all Loading... |
| 34 // Disables or enables the remote input in the client session. | 33 // Disables or enables the remote input in the client session. |
| 35 virtual void SetDisableInputs(bool disable_inputs) = 0; | 34 virtual void SetDisableInputs(bool disable_inputs) = 0; |
| 36 | 35 |
| 37 // Resets the video pipeline, including re-creating the capturer & encoder. | 36 // Resets the video pipeline, including re-creating the capturer & encoder. |
| 38 virtual void ResetVideoPipeline() = 0; | 37 virtual void ResetVideoPipeline() = 0; |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 } // namespace remoting | 40 } // namespace remoting |
| 42 | 41 |
| 43 #endif // REMOTING_HOST_CLIENT_SESSION_CONTROL_H_ | 42 #endif // REMOTING_HOST_CLIENT_SESSION_CONTROL_H_ |
| OLD | NEW |