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/net_export.h" |
26 #include "net/base/network_change_notifier.h" | 27 #include "net/base/network_change_notifier.h" |
27 #include "net/cert/cert_database.h" | 28 #include "net/cert/cert_database.h" |
28 #include "net/http/http_server_properties.h" | 29 #include "net/http/http_server_properties.h" |
29 #include "net/http/http_stream_factory.h" | 30 #include "net/http/http_stream_factory.h" |
30 #include "net/log/net_log_with_source.h" | 31 #include "net/log/net_log_with_source.h" |
31 #include "net/proxy/proxy_server.h" | 32 #include "net/proxy/proxy_server.h" |
32 #include "net/quic/chromium/network_connection.h" | 33 #include "net/quic/chromium/network_connection.h" |
33 #include "net/quic/chromium/quic_chromium_client_session.h" | 34 #include "net/quic/chromium/quic_chromium_client_session.h" |
34 #include "net/quic/chromium/quic_http_stream.h" | 35 #include "net/quic/chromium/quic_http_stream.h" |
35 #include "net/quic/core/quic_client_push_promise_index.h" | 36 #include "net/quic/core/quic_client_push_promise_index.h" |
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 const scoped_refptr<SSLConfigService> ssl_config_service_; | 653 const scoped_refptr<SSLConfigService> ssl_config_service_; |
653 | 654 |
654 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 655 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
655 | 656 |
656 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 657 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
657 }; | 658 }; |
658 | 659 |
659 } // namespace net | 660 } // namespace net |
660 | 661 |
661 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 662 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
OLD | NEW |