Index: net/url_request/url_request_unittest.h |
=================================================================== |
--- net/url_request/url_request_unittest.h (revision 64203) |
+++ net/url_request/url_request_unittest.h (working copy) |
@@ -126,7 +126,7 @@ |
TestURLRequestContext() { |
host_resolver_ = |
net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, |
- NULL, NULL); |
+ NULL); |
proxy_service_ = net::ProxyService::CreateDirect(); |
Init(); |
} |
@@ -134,7 +134,7 @@ |
explicit TestURLRequestContext(const std::string& proxy) { |
host_resolver_ = |
net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, |
- NULL, NULL); |
+ NULL); |
net::ProxyConfig proxy_config; |
proxy_config.proxy_rules().ParseFromString(proxy); |
proxy_service_ = net::ProxyService::CreateFixed(proxy_config); |