| Index: chrome/browser/net/connection_tester.cc
|
| diff --git a/chrome/browser/net/connection_tester.cc b/chrome/browser/net/connection_tester.cc
|
| index 2303acae4903f00aacfec5561d7c6d385a742c7f..2bebe6e419bc912a1b7fd75031eefb769f5e1a6d 100644
|
| --- a/chrome/browser/net/connection_tester.cc
|
| +++ b/chrome/browser/net/connection_tester.cc
|
| @@ -31,6 +31,7 @@
|
| #include "net/proxy/proxy_config_service_fixed.h"
|
| #include "net/proxy/proxy_script_fetcher_impl.h"
|
| #include "net/proxy/proxy_service.h"
|
| +#include "net/proxy/proxy_service_v8.h"
|
| #include "net/url_request/url_request.h"
|
| #include "net/url_request/url_request_context.h"
|
| #include "net/url_request/url_request_context_storage.h"
|
| @@ -192,14 +193,14 @@ class ExperimentURLRequestContext : public net::URLRequestContext {
|
| }
|
|
|
| experiment_proxy_service->reset(
|
| - net::ProxyService::CreateUsingV8ProxyResolver(
|
| - proxy_config_service->release(),
|
| - 0u,
|
| - new net::ProxyScriptFetcherImpl(proxy_request_context_),
|
| - dhcp_factory.Create(proxy_request_context_),
|
| - host_resolver(),
|
| - NULL,
|
| - NULL));
|
| + net::CreateProxyServiceUsingV8ProxyResolver(
|
| + proxy_config_service->release(),
|
| + 0u,
|
| + new net::ProxyScriptFetcherImpl(proxy_request_context_),
|
| + dhcp_factory.Create(proxy_request_context_),
|
| + host_resolver(),
|
| + NULL,
|
| + NULL));
|
|
|
| return net::OK;
|
| }
|
|
|