| 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_CLIENT_SESSION_H_ | 5 #ifndef REMOTING_HOST_CLIENT_SESSION_H_ |
| 6 #define REMOTING_HOST_CLIENT_SESSION_H_ | 6 #define REMOTING_HOST_CLIENT_SESSION_H_ |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "remoting/protocol/connection_to_client.h" | 27 #include "remoting/protocol/connection_to_client.h" |
| 28 #include "remoting/protocol/host_stub.h" | 28 #include "remoting/protocol/host_stub.h" |
| 29 #include "remoting/protocol/input_event_tracker.h" | 29 #include "remoting/protocol/input_event_tracker.h" |
| 30 #include "remoting/protocol/input_filter.h" | 30 #include "remoting/protocol/input_filter.h" |
| 31 #include "remoting/protocol/input_stub.h" | 31 #include "remoting/protocol/input_stub.h" |
| 32 #include "remoting/protocol/mouse_input_filter.h" | 32 #include "remoting/protocol/mouse_input_filter.h" |
| 33 #include "remoting/protocol/pairing_registry.h" | 33 #include "remoting/protocol/pairing_registry.h" |
| 34 #include "remoting/protocol/video_stream.h" | 34 #include "remoting/protocol/video_stream.h" |
| 35 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" | 35 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" |
| 36 | 36 |
| 37 namespace base { | |
| 38 class SingleThreadTaskRunner; | |
| 39 } // namespace base | |
| 40 | |
| 41 namespace remoting { | 37 namespace remoting { |
| 42 | 38 |
| 43 class AudioStream; | 39 class AudioStream; |
| 44 class DesktopEnvironment; | 40 class DesktopEnvironment; |
| 45 class DesktopEnvironmentFactory; | 41 class DesktopEnvironmentFactory; |
| 46 class InputInjector; | 42 class InputInjector; |
| 47 class MouseShapePump; | 43 class MouseShapePump; |
| 48 class ScreenControls; | 44 class ScreenControls; |
| 49 | 45 |
| 50 namespace protocol { | 46 namespace protocol { |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 // Used to disable callbacks to |this| once DisconnectSession() has been | 248 // Used to disable callbacks to |this| once DisconnectSession() has been |
| 253 // called. | 249 // called. |
| 254 base::WeakPtrFactory<ClientSessionControl> weak_factory_; | 250 base::WeakPtrFactory<ClientSessionControl> weak_factory_; |
| 255 | 251 |
| 256 DISALLOW_COPY_AND_ASSIGN(ClientSession); | 252 DISALLOW_COPY_AND_ASSIGN(ClientSession); |
| 257 }; | 253 }; |
| 258 | 254 |
| 259 } // namespace remoting | 255 } // namespace remoting |
| 260 | 256 |
| 261 #endif // REMOTING_HOST_CLIENT_SESSION_H_ | 257 #endif // REMOTING_HOST_CLIENT_SESSION_H_ |
| OLD | NEW |