| 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_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 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 "net/base/host_port_pair.h" | 17 #include "net/base/host_port_pair.h" |
| 18 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 19 #include "net/base/privacy_mode.h" | 19 #include "net/base/privacy_mode.h" |
| 20 #include "net/base/request_priority.h" | 20 #include "net/base/request_priority.h" |
| 21 #include "net/http/http_stream_factory.h" | 21 #include "net/http/http_stream_factory.h" |
| 22 #include "net/log/net_log_source.h" | 22 #include "net/log/net_log_source.h" |
| 23 #include "net/proxy/proxy_server.h" | 23 #include "net/proxy/proxy_server.h" |
| 24 #include "net/socket/ssl_client_socket.h" | 24 #include "net/socket/ssl_client_socket.h" |
| 25 #include "net/spdy/spdy_session_key.h" | 25 #include "net/spdy/chromium/spdy_session_key.h" |
| 26 | 26 |
| 27 namespace net { | 27 namespace net { |
| 28 | 28 |
| 29 class HttpNetworkSession; | 29 class HttpNetworkSession; |
| 30 class ProxyInfo; | 30 class ProxyInfo; |
| 31 class SpdySession; | 31 class SpdySession; |
| 32 class NetLogWithSource; | 32 class NetLogWithSource; |
| 33 | 33 |
| 34 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory { | 34 class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory { |
| 35 public: | 35 public: |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 // The count of JobControllers that was most recently logged to histograms. | 199 // The count of JobControllers that was most recently logged to histograms. |
| 200 size_t last_logged_job_controller_count_; | 200 size_t last_logged_job_controller_count_; |
| 201 | 201 |
| 202 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); | 202 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 } // namespace net | 205 } // namespace net |
| 206 | 206 |
| 207 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 207 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| OLD | NEW |