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

Unified Diff: content/browser/renderer_host/pepper/pepper_network_proxy_host.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: content/browser/renderer_host/pepper/pepper_network_proxy_host.cc
diff --git a/content/browser/renderer_host/pepper/pepper_network_proxy_host.cc b/content/browser/renderer_host/pepper/pepper_network_proxy_host.cc
index 7939a82846964d9e8749189eaccfaa235493d543..6b6737f501fa8a501ec8259277cfe8cc2598d473 100644
--- a/content/browser/renderer_host/pepper/pepper_network_proxy_host.cc
+++ b/content/browser/renderer_host/pepper/pepper_network_proxy_host.cc
@@ -144,13 +144,9 @@ void PepperNetworkProxyHost::TryToSendUnsentRequests() {
weak_factory_.GetWeakPtr(),
request.reply_context,
base::Owned(proxy_info));
- int result = proxy_service_->ResolveProxy(request.url,
- std::string(),
- proxy_info,
- callback,
- &pending_request,
- NULL,
- net::BoundNetLog());
+ int result = proxy_service_->ResolveProxy(
+ request.url, std::string(), proxy_info, callback, &pending_request,
+ NULL, net::NetLogWithSource());
pending_requests_.push(pending_request);
// If it was handled synchronously, we must run the callback now;
// proxy_service_ won't run it for us in this case.

Powered by Google App Engine
This is Rietveld 408576698