| 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> | |
| 13 | 12 |
| 14 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 14 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 17 #include "net/base/host_port_pair.h" | 16 #include "net/base/host_port_pair.h" |
| 18 #include "net/base/net_export.h" | 17 #include "net/base/net_export.h" |
| 19 #include "net/base/privacy_mode.h" | 18 #include "net/base/privacy_mode.h" |
| 20 #include "net/base/request_priority.h" | 19 #include "net/base/request_priority.h" |
| 21 #include "net/http/http_stream_factory.h" | 20 #include "net/http/http_stream_factory.h" |
| 22 #include "net/log/net_log_source.h" | 21 #include "net/log/net_log_source.h" |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 197 |
| 199 // The count of JobControllers that was most recently logged to histograms. | 198 // The count of JobControllers that was most recently logged to histograms. |
| 200 size_t last_logged_job_controller_count_; | 199 size_t last_logged_job_controller_count_; |
| 201 | 200 |
| 202 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); | 201 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); |
| 203 }; | 202 }; |
| 204 | 203 |
| 205 } // namespace net | 204 } // namespace net |
| 206 | 205 |
| 207 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 206 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| OLD | NEW |