| 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 19 matching lines...) Expand all Loading... |
| 30 #include "net/http/http_stream_factory.h" | 30 #include "net/http/http_stream_factory.h" |
| 31 #include "net/log/net_log_with_source.h" | 31 #include "net/log/net_log_with_source.h" |
| 32 #include "net/proxy/proxy_server.h" | 32 #include "net/proxy/proxy_server.h" |
| 33 #include "net/quic/chromium/network_connection.h" | 33 #include "net/quic/chromium/network_connection.h" |
| 34 #include "net/quic/chromium/quic_chromium_client_session.h" | 34 #include "net/quic/chromium/quic_chromium_client_session.h" |
| 35 #include "net/quic/chromium/quic_clock_skew_detector.h" | 35 #include "net/quic/chromium/quic_clock_skew_detector.h" |
| 36 #include "net/quic/chromium/quic_http_stream.h" | 36 #include "net/quic/chromium/quic_http_stream.h" |
| 37 #include "net/quic/core/quic_client_push_promise_index.h" | 37 #include "net/quic/core/quic_client_push_promise_index.h" |
| 38 #include "net/quic/core/quic_config.h" | 38 #include "net/quic/core/quic_config.h" |
| 39 #include "net/quic/core/quic_crypto_stream.h" | 39 #include "net/quic/core/quic_crypto_stream.h" |
| 40 #include "net/quic/core/quic_protocol.h" | 40 #include "net/quic/core/quic_packets.h" |
| 41 #include "net/quic/core/quic_server_id.h" | 41 #include "net/quic/core/quic_server_id.h" |
| 42 #include "net/ssl/ssl_config_service.h" | 42 #include "net/ssl/ssl_config_service.h" |
| 43 | 43 |
| 44 namespace base { | 44 namespace base { |
| 45 class Value; | 45 class Value; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace net { | 48 namespace net { |
| 49 | 49 |
| 50 class CTPolicyEnforcer; | 50 class CTPolicyEnforcer; |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 const scoped_refptr<SSLConfigService> ssl_config_service_; | 657 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 658 | 658 |
| 659 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 659 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 660 | 660 |
| 661 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 661 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 662 }; | 662 }; |
| 663 | 663 |
| 664 } // namespace net | 664 } // namespace net |
| 665 | 665 |
| 666 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 666 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |