summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/test_shell/simple_resource_loader_bridge.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/simple_resource_loader_bridge.cc b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
index baf8355..5cfbea0 100644
--- a/webkit/tools/test_shell/simple_resource_loader_bridge.cc
+++ b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
@@ -645,7 +645,8 @@ bool FindProxyForUrl(const GURL& url, std::string* proxy_list) {
request_context->proxy_service()));
net::ProxyInfo proxy_info;
- int rv = sync_proxy_service->ResolveProxy(url, &proxy_info, NULL);
+ int rv = sync_proxy_service->ResolveProxy(url, &proxy_info,
+ net::BoundNetLog());
if (rv == net::OK) {
*proxy_list = proxy_info.ToPacString();
}