| 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_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
| 6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "remoting/protocol/transport.h" | 12 #include "remoting/protocol/transport.h" |
| 13 | 13 |
| 14 namespace webrtc { | 14 namespace webrtc { |
| 15 class DesktopCapturer; | 15 class DesktopCapturer; |
| 16 } // namespace webrtc | 16 } // namespace webrtc |
| 17 | 17 |
| 18 namespace remoting { | 18 namespace remoting { |
| 19 | 19 |
| 20 class VideoEncoder; | |
| 21 | |
| 22 namespace protocol { | 20 namespace protocol { |
| 23 | 21 |
| 24 class AudioStream; | 22 class AudioStream; |
| 25 class AudioSource; | 23 class AudioSource; |
| 26 class ClientStub; | 24 class ClientStub; |
| 27 class ClipboardStub; | 25 class ClipboardStub; |
| 28 class HostStub; | 26 class HostStub; |
| 29 class InputStub; | 27 class InputStub; |
| 30 class Session; | 28 class Session; |
| 31 class VideoStream; | 29 class VideoStream; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 // must be called in EventHandler::OnConnectionAuthenticated(). | 93 // must be called in EventHandler::OnConnectionAuthenticated(). |
| 96 virtual void set_clipboard_stub(ClipboardStub* clipboard_stub) = 0; | 94 virtual void set_clipboard_stub(ClipboardStub* clipboard_stub) = 0; |
| 97 virtual void set_host_stub(HostStub* host_stub) = 0; | 95 virtual void set_host_stub(HostStub* host_stub) = 0; |
| 98 virtual void set_input_stub(InputStub* input_stub) = 0; | 96 virtual void set_input_stub(InputStub* input_stub) = 0; |
| 99 }; | 97 }; |
| 100 | 98 |
| 101 } // namespace protocol | 99 } // namespace protocol |
| 102 } // namespace remoting | 100 } // namespace remoting |
| 103 | 101 |
| 104 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ | 102 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ |
| OLD | NEW |