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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.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: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc
index 07534a52a597f8c3259f491bde71bc9c2ee18d36..10d6acecec9f8293d1f750317aa068fb172a71ab 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data_unittest.cc
@@ -166,13 +166,13 @@ TEST_F(DataReductionProxyIODataTest, TestResetBadProxyListOnDisableDataSaver) {
->proxy_service();
net::ProxyInfo proxy_info;
proxy_info.UseNamedProxy("http://foo2.com");
- net::BoundNetLog bound_net_log;
+ net::NetLogWithSource net_log_with_source;
const net::ProxyRetryInfoMap& bad_proxy_list =
proxy_service->proxy_retry_info();
// Simulate network error to add proxies to the bad proxy list.
proxy_service->MarkProxiesAsBadUntil(proxy_info, base::TimeDelta::FromDays(1),
- proxies, bound_net_log);
+ proxies, net_log_with_source);
base::RunLoop().RunUntilIdle();
// Verify that there are 2 proxies in the bad proxies list.

Powered by Google App Engine
This is Rietveld 408576698