| 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> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 12 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 14 #include "net/base/host_port_pair.h" | 17 #include "net/base/host_port_pair.h" |
| 15 #include "net/http/http_stream_factory.h" | 18 #include "net/http/http_stream_factory.h" |
| 16 #include "net/log/net_log.h" | 19 #include "net/log/net_log.h" |
| 17 #include "net/proxy/proxy_server.h" | 20 #include "net/proxy/proxy_server.h" |
| 18 #include "net/socket/ssl_client_socket.h" | 21 #include "net/socket/ssl_client_socket.h" |
| 19 #include "net/spdy/spdy_session_key.h" | 22 #include "net/spdy/spdy_session_key.h" |
| 20 | 23 |
| 21 namespace net { | 24 namespace net { |
| 22 | 25 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // deleted when the factory is destroyed. | 131 // deleted when the factory is destroyed. |
| 129 std::set<const Job*> preconnect_job_set_; | 132 std::set<const Job*> preconnect_job_set_; |
| 130 | 133 |
| 131 const bool for_websockets_; | 134 const bool for_websockets_; |
| 132 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); | 135 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); |
| 133 }; | 136 }; |
| 134 | 137 |
| 135 } // namespace net | 138 } // namespace net |
| 136 | 139 |
| 137 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 140 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| OLD | NEW |