| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_HOST_EXTENSION_SESSION_H_ | 5 #ifndef REMOTING_HOST_HOST_EXTENSION_SESSION_H_ |
| 6 #define REMOTING_HOST_HOST_EXTENSION_SESSION_H_ | 6 #define REMOTING_HOST_HOST_EXTENSION_SESSION_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 | |
| 10 namespace webrtc { | 8 namespace webrtc { |
| 11 class DesktopCapturer; | 9 class DesktopCapturer; |
| 12 } | 10 } |
| 13 | 11 |
| 14 namespace remoting { | 12 namespace remoting { |
| 15 | 13 |
| 16 class ClientSessionControl; | 14 class ClientSessionControl; |
| 17 class VideoEncoder; | 15 class VideoEncoder; |
| 18 | 16 |
| 19 namespace protocol { | 17 namespace protocol { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 // It returns |true| if the message was handled, and |false| otherwise. | 30 // It returns |true| if the message was handled, and |false| otherwise. |
| 33 virtual bool OnExtensionMessage( | 31 virtual bool OnExtensionMessage( |
| 34 ClientSessionControl* client_session_control, | 32 ClientSessionControl* client_session_control, |
| 35 protocol::ClientStub* client_stub, | 33 protocol::ClientStub* client_stub, |
| 36 const protocol::ExtensionMessage& message) = 0; | 34 const protocol::ExtensionMessage& message) = 0; |
| 37 }; | 35 }; |
| 38 | 36 |
| 39 } // namespace remoting | 37 } // namespace remoting |
| 40 | 38 |
| 41 #endif // REMOTING_HOST_HOST_EXTENSION_SESSION_H_ | 39 #endif // REMOTING_HOST_HOST_EXTENSION_SESSION_H_ |
| OLD | NEW |