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 "chrome/browser/net/connection_tester.h" | 5 #include "chrome/browser/net/connection_tester.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 // Create a custom ProxyService for this this experiment. | 47 // Create a custom ProxyService for this this experiment. |
48 rv = CreateProxyService(experiment.proxy_settings_experiment, | 48 rv = CreateProxyService(experiment.proxy_settings_experiment, |
49 &proxy_service_); | 49 &proxy_service_); |
50 if (rv != net::OK) | 50 if (rv != net::OK) |
51 return rv; // Failure. | 51 return rv; // Failure. |
52 | 52 |
53 // The rest of the dependencies are standard, and don't depend on the | 53 // The rest of the dependencies are standard, and don't depend on the |
54 // experiment being run. | 54 // experiment being run. |
55 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_); | 55 ftp_transaction_factory_ = new net::FtpNetworkLayer(host_resolver_); |
56 ssl_config_service_ = new net::SSLConfigServiceDefaults; | 56 ssl_config_service_ = new net::SSLConfigServiceDefaults; |
57 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault(); | 57 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault( |
| 58 host_resolver_); |
58 http_transaction_factory_ = new net::HttpCache( | 59 http_transaction_factory_ = new net::HttpCache( |
59 net::HttpNetworkLayer::CreateFactory(host_resolver_, proxy_service_, | 60 net::HttpNetworkLayer::CreateFactory(host_resolver_, proxy_service_, |
60 ssl_config_service_, http_auth_handler_factory_, NULL, NULL), | 61 ssl_config_service_, http_auth_handler_factory_, NULL, NULL), |
61 net::HttpCache::DefaultBackend::InMemory(0)); | 62 net::HttpCache::DefaultBackend::InMemory(0)); |
62 // In-memory cookie store. | 63 // In-memory cookie store. |
63 cookie_store_ = new net::CookieMonster(NULL, NULL); | 64 cookie_store_ = new net::CookieMonster(NULL, NULL); |
64 | 65 |
65 return net::OK; | 66 return net::OK; |
66 } | 67 } |
67 | 68 |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 | 393 |
393 // Notify the delegate of completion. | 394 // Notify the delegate of completion. |
394 delegate_->OnCompletedConnectionTestExperiment(current, result); | 395 delegate_->OnCompletedConnectionTestExperiment(current, result); |
395 | 396 |
396 if (remaining_experiments_.empty()) { | 397 if (remaining_experiments_.empty()) { |
397 delegate_->OnCompletedConnectionTestSuite(); | 398 delegate_->OnCompletedConnectionTestSuite(); |
398 } else { | 399 } else { |
399 StartNextExperiment(); | 400 StartNextExperiment(); |
400 } | 401 } |
401 } | 402 } |
OLD | NEW |