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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <queue> | 10 #include <queue> |
11 #include <string> | 11 #include <string> |
12 | 12 |
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/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.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 "extensions/browser/api/api_resource.h" | 19 #include "extensions/browser/api/api_resource.h" |
20 #include "extensions/browser/api/api_resource_manager.h" | 20 #include "extensions/browser/api/api_resource_manager.h" |
21 #include "extensions/browser/api/cast_channel/cast_socket.h" | 21 #include "extensions/browser/api/cast_channel/cast_socket.h" |
22 #include "extensions/browser/api/cast_channel/cast_transport.h" | 22 #include "extensions/browser/api/cast_channel/cast_transport.h" |
23 #include "extensions/browser/api/cast_channel/logger_util.h" | |
24 #include "extensions/common/api/cast_channel.h" | 23 #include "extensions/common/api/cast_channel.h" |
25 #include "extensions/common/api/cast_channel/logging.pb.h" | 24 #include "extensions/common/api/cast_channel/logging.pb.h" |
26 #include "net/base/completion_callback.h" | 25 #include "net/base/completion_callback.h" |
27 #include "net/base/io_buffer.h" | 26 #include "net/base/io_buffer.h" |
28 #include "net/base/ip_endpoint.h" | 27 #include "net/base/ip_endpoint.h" |
29 #include "net/log/net_log_source.h" | 28 #include "net/log/net_log_source.h" |
30 | 29 |
31 namespace net { | 30 namespace net { |
32 class CertVerifier; | 31 class CertVerifier; |
33 class CTPolicyEnforcer; | 32 class CTPolicyEnforcer; |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 // information. | 378 // information. |
380 AuthTransportDelegate* auth_delegate_; | 379 AuthTransportDelegate* auth_delegate_; |
381 | 380 |
382 DISALLOW_COPY_AND_ASSIGN(CastSocketImpl); | 381 DISALLOW_COPY_AND_ASSIGN(CastSocketImpl); |
383 }; | 382 }; |
384 } // namespace cast_channel | 383 } // namespace cast_channel |
385 } // namespace api | 384 } // namespace api |
386 } // namespace extensions | 385 } // namespace extensions |
387 | 386 |
388 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ | 387 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
OLD | NEW |