| 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_SESSION_PROXY_H_ | 5 #ifndef REMOTING_HOST_DESKTOP_SESSION_PROXY_H_ |
| 6 #define REMOTING_HOST_DESKTOP_SESSION_PROXY_H_ | 6 #define REMOTING_HOST_DESKTOP_SESSION_PROXY_H_ |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 : public base::RefCountedThreadSafe<DesktopSessionProxy, | 69 : public base::RefCountedThreadSafe<DesktopSessionProxy, |
| 70 DesktopSessionProxyTraits>, | 70 DesktopSessionProxyTraits>, |
| 71 public IPC::Listener { | 71 public IPC::Listener { |
| 72 public: | 72 public: |
| 73 DesktopSessionProxy( | 73 DesktopSessionProxy( |
| 74 scoped_refptr<base::SingleThreadTaskRunner> audio_capture_task_runner, | 74 scoped_refptr<base::SingleThreadTaskRunner> audio_capture_task_runner, |
| 75 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner, | 75 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner, |
| 76 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, | 76 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, |
| 77 base::WeakPtr<ClientSessionControl> client_session_control, | 77 base::WeakPtr<ClientSessionControl> client_session_control, |
| 78 base::WeakPtr<DesktopSessionConnector> desktop_session_connector, | 78 base::WeakPtr<DesktopSessionConnector> desktop_session_connector, |
| 79 bool virtual_terminal, | 79 bool virtual_terminal); |
| 80 bool supports_touch_events); | |
| 81 | 80 |
| 82 // Mirrors DesktopEnvironment. | 81 // Mirrors DesktopEnvironment. |
| 83 std::unique_ptr<AudioCapturer> CreateAudioCapturer(); | 82 std::unique_ptr<AudioCapturer> CreateAudioCapturer(); |
| 84 std::unique_ptr<InputInjector> CreateInputInjector(); | 83 std::unique_ptr<InputInjector> CreateInputInjector(); |
| 85 std::unique_ptr<ScreenControls> CreateScreenControls(); | 84 std::unique_ptr<ScreenControls> CreateScreenControls(); |
| 86 std::unique_ptr<webrtc::DesktopCapturer> CreateVideoCapturer(); | 85 std::unique_ptr<webrtc::DesktopCapturer> CreateVideoCapturer(); |
| 87 std::unique_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor(); | 86 std::unique_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor(); |
| 88 std::string GetCapabilities() const; | 87 std::string GetCapabilities() const; |
| 89 void SetCapabilities(const std::string& capabilities); | 88 void SetCapabilities(const std::string& capabilities); |
| 90 | 89 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 215 |
| 217 // Keeps the desired screen resolution so it can be passed to a newly attached | 216 // Keeps the desired screen resolution so it can be passed to a newly attached |
| 218 // desktop session agent. | 217 // desktop session agent. |
| 219 ScreenResolution screen_resolution_; | 218 ScreenResolution screen_resolution_; |
| 220 | 219 |
| 221 // True if |this| has been connected to the desktop session. | 220 // True if |this| has been connected to the desktop session. |
| 222 bool is_desktop_session_connected_; | 221 bool is_desktop_session_connected_; |
| 223 | 222 |
| 224 bool virtual_terminal_; | 223 bool virtual_terminal_; |
| 225 | 224 |
| 226 // True if touch events are supported by the desktop session. | |
| 227 bool supports_touch_events_; | |
| 228 | |
| 229 // Stores the session id for the proxied desktop process. | 225 // Stores the session id for the proxied desktop process. |
| 230 uint32_t desktop_session_id_ = UINT32_MAX; | 226 uint32_t desktop_session_id_ = UINT32_MAX; |
| 231 | 227 |
| 232 DISALLOW_COPY_AND_ASSIGN(DesktopSessionProxy); | 228 DISALLOW_COPY_AND_ASSIGN(DesktopSessionProxy); |
| 233 }; | 229 }; |
| 234 | 230 |
| 235 // Destroys |DesktopSessionProxy| instances on the caller's thread. | 231 // Destroys |DesktopSessionProxy| instances on the caller's thread. |
| 236 struct DesktopSessionProxyTraits { | 232 struct DesktopSessionProxyTraits { |
| 237 static void Destruct(const DesktopSessionProxy* desktop_session_proxy); | 233 static void Destruct(const DesktopSessionProxy* desktop_session_proxy); |
| 238 }; | 234 }; |
| 239 | 235 |
| 240 } // namespace remoting | 236 } // namespace remoting |
| 241 | 237 |
| 242 #endif // REMOTING_HOST_DESKTOP_SESSION_PROXY_H_ | 238 #endif // REMOTING_HOST_DESKTOP_SESSION_PROXY_H_ |
| OLD | NEW |