| 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 NET_QUIC_QUIC_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ | 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <deque> | 11 #include <deque> |
| 12 #include <list> | 12 #include <list> |
| 13 #include <map> | 13 #include <map> |
| 14 #include <set> | 14 #include <set> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "base/gtest_prod_util.h" | 18 #include "base/gtest_prod_util.h" |
| 19 #include "base/logging.h" | 19 #include "base/logging.h" |
| 20 #include "base/macros.h" | 20 #include "base/macros.h" |
| 21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
| 22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
| 23 #include "net/base/address_list.h" | 23 #include "net/base/address_list.h" |
| 24 #include "net/base/completion_callback.h" | 24 #include "net/base/completion_callback.h" |
| 25 #include "net/base/host_port_pair.h" | 25 #include "net/base/host_port_pair.h" |
| 26 #include "net/base/network_change_notifier.h" | 26 #include "net/base/network_change_notifier.h" |
| 27 #include "net/cert/cert_database.h" | 27 #include "net/cert/cert_database.h" |
| 28 #include "net/http/http_server_properties.h" | 28 #include "net/http/http_server_properties.h" |
| 29 #include "net/http/http_stream_factory.h" | 29 #include "net/http/http_stream_factory.h" |
| 30 #include "net/log/net_log.h" | 30 #include "net/log/net_log_with_source.h" |
| 31 #include "net/proxy/proxy_server.h" | 31 #include "net/proxy/proxy_server.h" |
| 32 #include "net/quic/chromium/network_connection.h" | 32 #include "net/quic/chromium/network_connection.h" |
| 33 #include "net/quic/chromium/quic_chromium_client_session.h" | 33 #include "net/quic/chromium/quic_chromium_client_session.h" |
| 34 #include "net/quic/chromium/quic_http_stream.h" | 34 #include "net/quic/chromium/quic_http_stream.h" |
| 35 #include "net/quic/core/quic_client_push_promise_index.h" | 35 #include "net/quic/core/quic_client_push_promise_index.h" |
| 36 #include "net/quic/core/quic_config.h" | 36 #include "net/quic/core/quic_config.h" |
| 37 #include "net/quic/core/quic_crypto_stream.h" | 37 #include "net/quic/core/quic_crypto_stream.h" |
| 38 #include "net/quic/core/quic_protocol.h" | 38 #include "net/quic/core/quic_protocol.h" |
| 39 #include "net/quic/core/quic_server_id.h" | 39 #include "net/quic/core/quic_server_id.h" |
| 40 #include "net/ssl/ssl_config_service.h" | 40 #include "net/ssl/ssl_config_service.h" |
| 41 | 41 |
| 42 namespace base { |
| 43 class Value; |
| 44 } |
| 45 |
| 42 namespace net { | 46 namespace net { |
| 43 | 47 |
| 44 class CTPolicyEnforcer; | 48 class CTPolicyEnforcer; |
| 45 class CertVerifier; | 49 class CertVerifier; |
| 46 class ChannelIDService; | 50 class ChannelIDService; |
| 47 class ClientSocketFactory; | 51 class ClientSocketFactory; |
| 48 class CTVerifier; | 52 class CTVerifier; |
| 49 class HostResolver; | 53 class HostResolver; |
| 50 class HttpServerProperties; | 54 class HttpServerProperties; |
| 55 class NetLog; |
| 51 class QuicClock; | 56 class QuicClock; |
| 52 class QuicChromiumAlarmFactory; | 57 class QuicChromiumAlarmFactory; |
| 53 class QuicChromiumConnectionHelper; | 58 class QuicChromiumConnectionHelper; |
| 54 class QuicCryptoClientStreamFactory; | 59 class QuicCryptoClientStreamFactory; |
| 55 class QuicRandom; | 60 class QuicRandom; |
| 56 class QuicServerInfo; | 61 class QuicServerInfo; |
| 57 class QuicServerInfoFactory; | 62 class QuicServerInfoFactory; |
| 58 class QuicStreamFactory; | 63 class QuicStreamFactory; |
| 59 class SocketPerformanceWatcherFactory; | 64 class SocketPerformanceWatcherFactory; |
| 60 class TransportSecurityState; | 65 class TransportSecurityState; |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 const scoped_refptr<SSLConfigService> ssl_config_service_; | 652 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 648 | 653 |
| 649 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 654 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 650 | 655 |
| 651 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 656 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 652 }; | 657 }; |
| 653 | 658 |
| 654 } // namespace net | 659 } // namespace net |
| 655 | 660 |
| 656 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 661 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |