Chromium Code Reviews| Index: net/proxy/proxy_service_mojo_unittest.cc |
| diff --git a/net/proxy/proxy_service_mojo_unittest.cc b/net/proxy/proxy_service_mojo_unittest.cc |
| index 171f89be8c42f10555272e153014c0d7001d0b38..b6b6bc86a809a4b4bb3bb2160e3c40b165b52610 100644 |
| --- a/net/proxy/proxy_service_mojo_unittest.cc |
| +++ b/net/proxy/proxy_service_mojo_unittest.cc |
| @@ -129,8 +129,9 @@ class ProxyServiceMojoTest : public testing::Test, |
| proxy_service_.reset(CreateProxyServiceUsingMojoFactory( |
| this, new ProxyConfigServiceFixed( |
| ProxyConfig::CreateFromCustomPacURL(GURL(kPacUrl))), |
| - fetcher_, new DoNothingDhcpProxyScriptFetcher(), &mock_host_resolver_, |
| - &net_log_, &network_delegate_)); |
| + fetcher_, scoped_ptr<DhcpProxyScriptFetcher>( |
|
eroman
2015/08/21 20:03:12
optional: use make_scoped_ptr(new DoNothing...);
|
| + new DoNothingDhcpProxyScriptFetcher()), |
| + &mock_host_resolver_, &net_log_, &network_delegate_)); |
| } |
| scoped_ptr<base::ScopedClosureRunner> CreateResolver( |