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 |
(...skipping 14 matching lines...) Expand all Loading... |
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.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/quic_client_push_promise_index.h" | 35 #include "net/quic/core/quic_client_push_promise_index.h" |
36 #include "net/quic/quic_config.h" | 36 #include "net/quic/core/quic_config.h" |
37 #include "net/quic/quic_crypto_stream.h" | 37 #include "net/quic/core/quic_crypto_stream.h" |
38 #include "net/quic/quic_protocol.h" | 38 #include "net/quic/core/quic_protocol.h" |
39 #include "net/quic/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 net { | 42 namespace net { |
43 | 43 |
44 class CTPolicyEnforcer; | 44 class CTPolicyEnforcer; |
45 class CertVerifier; | 45 class CertVerifier; |
46 class ChannelIDService; | 46 class ChannelIDService; |
47 class ClientSocketFactory; | 47 class ClientSocketFactory; |
48 class CTVerifier; | 48 class CTVerifier; |
49 class HostResolver; | 49 class HostResolver; |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 const scoped_refptr<SSLConfigService> ssl_config_service_; | 626 const scoped_refptr<SSLConfigService> ssl_config_service_; |
627 | 627 |
628 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 628 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
629 | 629 |
630 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 630 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
631 }; | 631 }; |
632 | 632 |
633 } // namespace net | 633 } // namespace net |
634 | 634 |
635 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 635 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
OLD | NEW |