OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "build/build_config.h" | 5 #include "build/build_config.h" |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/singleton.h" | 10 #include "base/singleton.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 scoped_refptr<net::HostResolver> host_resolver( | 138 scoped_refptr<net::HostResolver> host_resolver( |
139 net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, | 139 net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, |
140 NULL)); | 140 NULL)); |
141 | 141 |
142 scoped_refptr<net::ProxyService> proxy_service( | 142 scoped_refptr<net::ProxyService> proxy_service( |
143 net::ProxyService::CreateDirect()); | 143 net::ProxyService::CreateDirect()); |
144 scoped_refptr<net::SSLConfigService> ssl_config_service( | 144 scoped_refptr<net::SSLConfigService> ssl_config_service( |
145 net::SSLConfigService::CreateSystemSSLConfigService()); | 145 net::SSLConfigService::CreateSystemSSLConfigService()); |
146 net::HttpTransactionFactory* factory = NULL; | 146 net::HttpTransactionFactory* factory = NULL; |
147 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory( | 147 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory( |
148 net::HttpAuthHandlerFactory::CreateDefault()); | 148 net::HttpAuthHandlerFactory::CreateDefault(host_resolver)); |
149 if (use_cache) { | 149 if (use_cache) { |
150 factory = new net::HttpCache(host_resolver, proxy_service, | 150 factory = new net::HttpCache(host_resolver, proxy_service, |
151 ssl_config_service, http_auth_handler_factory.get(), NULL, NULL, | 151 ssl_config_service, http_auth_handler_factory.get(), NULL, NULL, |
152 net::HttpCache::DefaultBackend::InMemory(0)); | 152 net::HttpCache::DefaultBackend::InMemory(0)); |
153 } else { | 153 } else { |
154 factory = new net::HttpNetworkLayer( | 154 factory = new net::HttpNetworkLayer( |
155 net::ClientSocketFactory::GetDefaultFactory(), host_resolver, | 155 net::ClientSocketFactory::GetDefaultFactory(), host_resolver, |
156 proxy_service, ssl_config_service, http_auth_handler_factory.get(), | 156 proxy_service, ssl_config_service, http_auth_handler_factory.get(), |
157 NULL, NULL); | 157 NULL, NULL); |
158 } | 158 } |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 std::string name(table.GetRowName(index)); | 200 std::string name(table.GetRowName(index)); |
201 if (name.length() > 0) { | 201 if (name.length() > 0) { |
202 int value = table.GetRowValue(index); | 202 int value = table.GetRowValue(index); |
203 printf("%s:\t%d\n", name.c_str(), value); | 203 printf("%s:\t%d\n", name.c_str(), value); |
204 } | 204 } |
205 } | 205 } |
206 printf("</stats>\n"); | 206 printf("</stats>\n"); |
207 } | 207 } |
208 return 0; | 208 return 0; |
209 } | 209 } |
OLD | NEW |