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 EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
6 #define EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ | 6 #define EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 namespace net { | 29 namespace net { |
30 class AddressList; | 30 class AddressList; |
31 class CertVerifier; | 31 class CertVerifier; |
32 class SSLClientSocket; | 32 class SSLClientSocket; |
33 class StreamSocket; | 33 class StreamSocket; |
34 class TCPClientSocket; | 34 class TCPClientSocket; |
35 class TransportSecurityState; | 35 class TransportSecurityState; |
36 } | 36 } |
37 | 37 |
38 namespace extensions { | 38 namespace extensions { |
39 namespace core_api { | 39 namespace api { |
40 namespace cast_channel { | 40 namespace cast_channel { |
41 class CastMessage; | 41 class CastMessage; |
42 class Logger; | 42 class Logger; |
43 struct LastErrors; | 43 struct LastErrors; |
44 class MessageFramer; | 44 class MessageFramer; |
45 | 45 |
46 // Cast device capabilities. | 46 // Cast device capabilities. |
47 enum CastDeviceCapability { | 47 enum CastDeviceCapability { |
48 NONE = 0, | 48 NONE = 0, |
49 VIDEO_OUT = 1 << 0, | 49 VIDEO_OUT = 1 << 0, |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 // Caller's message read and error handling delegate. | 358 // Caller's message read and error handling delegate. |
359 scoped_ptr<CastTransport::Delegate> delegate_; | 359 scoped_ptr<CastTransport::Delegate> delegate_; |
360 | 360 |
361 // Raw pointer to the auth handshake delegate. Used to get detailed error | 361 // Raw pointer to the auth handshake delegate. Used to get detailed error |
362 // information. | 362 // information. |
363 AuthTransportDelegate* auth_delegate_; | 363 AuthTransportDelegate* auth_delegate_; |
364 | 364 |
365 DISALLOW_COPY_AND_ASSIGN(CastSocketImpl); | 365 DISALLOW_COPY_AND_ASSIGN(CastSocketImpl); |
366 }; | 366 }; |
367 } // namespace cast_channel | 367 } // namespace cast_channel |
368 } // namespace core_api | 368 } // namespace api |
369 } // namespace extensions | 369 } // namespace extensions |
370 | 370 |
371 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ | 371 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
OLD | NEW |