Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6072)

Unified Diff: chrome/browser/net/predictor.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/predictor.cc
diff --git a/chrome/browser/net/predictor.cc b/chrome/browser/net/predictor.cc
index ceb9e1b8bb4f0043b96956ebbedd77b163cfddeb..07b2e53f42b972564425fd23a686872b8969fe86 100644
--- a/chrome/browser/net/predictor.cc
+++ b/chrome/browser/net/predictor.cc
@@ -932,7 +932,7 @@ bool Predictor::WouldLikelyProxyURL(const GURL& url) {
net::ProxyInfo info;
bool synchronous_success = proxy_service_->TryResolveProxySynchronously(
- url, std::string(), &info, nullptr, net::BoundNetLog());
+ url, std::string(), &info, nullptr, net::NetLogWithSource());
return synchronous_success && !info.is_direct();
}

Powered by Google App Engine
This is Rietveld 408576698