OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_EXTENSIONS_API_CAST_CHANNEL_CAST_SOCKET_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_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 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/cancelable_callback.h" | 13 #include "base/cancelable_callback.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
19 #include "chrome/common/extensions/api/cast_channel.h" | |
20 #include "extensions/browser/api/api_resource.h" | 19 #include "extensions/browser/api/api_resource.h" |
21 #include "extensions/browser/api/api_resource_manager.h" | 20 #include "extensions/browser/api/api_resource_manager.h" |
| 21 #include "extensions/common/api/cast_channel.h" |
22 #include "net/base/completion_callback.h" | 22 #include "net/base/completion_callback.h" |
23 #include "net/base/io_buffer.h" | 23 #include "net/base/io_buffer.h" |
24 #include "net/base/ip_endpoint.h" | 24 #include "net/base/ip_endpoint.h" |
25 #include "net/base/net_log.h" | 25 #include "net/base/net_log.h" |
26 | 26 |
27 namespace net { | 27 namespace net { |
28 class AddressList; | 28 class AddressList; |
29 class CertVerifier; | 29 class CertVerifier; |
30 class SSLClientSocket; | 30 class SSLClientSocket; |
31 class StreamSocket; | 31 class StreamSocket; |
32 class TCPClientSocket; | 32 class TCPClientSocket; |
33 class TransportSecurityState; | 33 class TransportSecurityState; |
34 } | 34 } |
35 | 35 |
36 namespace extensions { | 36 namespace extensions { |
37 namespace api { | 37 namespace core_api { |
38 namespace cast_channel { | 38 namespace cast_channel { |
39 | 39 |
40 class CastMessage; | 40 class CastMessage; |
41 | 41 |
42 // This class implements a channel between Chrome and a Cast device using a TCP | 42 // This class implements a channel between Chrome and a Cast device using a TCP |
43 // socket with SSL. The channel may authenticate that the receiver is a genuine | 43 // socket with SSL. The channel may authenticate that the receiver is a genuine |
44 // Cast device. All CastSocket objects must be used only on the IO thread. | 44 // Cast device. All CastSocket objects must be used only on the IO thread. |
45 // | 45 // |
46 // NOTE: Not called "CastChannel" to reduce confusion with the generated API | 46 // NOTE: Not called "CastChannel" to reduce confusion with the generated API |
47 // code. | 47 // code. |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 | 361 |
362 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestFullSecureConnectionFlowAsync); | 362 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestFullSecureConnectionFlowAsync); |
363 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestRead); | 363 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestRead); |
364 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestReadHeaderParseError); | 364 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestReadHeaderParseError); |
365 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestReadMany); | 365 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestReadMany); |
366 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestWriteErrorLargeMessage); | 366 FRIEND_TEST_ALL_PREFIXES(CastSocketTest, TestWriteErrorLargeMessage); |
367 DISALLOW_COPY_AND_ASSIGN(CastSocket); | 367 DISALLOW_COPY_AND_ASSIGN(CastSocket); |
368 }; | 368 }; |
369 | 369 |
370 } // namespace cast_channel | 370 } // namespace cast_channel |
371 } // namespace api | 371 } // namespace core_api |
372 } // namespace extensions | 372 } // namespace extensions |
373 | 373 |
374 #endif // CHROME_BROWSER_EXTENSIONS_API_CAST_CHANNEL_CAST_SOCKET_H_ | 374 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
OLD | NEW |