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

Unified Diff: net/proxy/proxy_info.cc

Issue 1286373002: Refactored not to expose raw pointers on ProxyList class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | net/proxy/proxy_list.h » ('j') | net/proxy/proxy_list.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_info.cc
diff --git a/net/proxy/proxy_info.cc b/net/proxy/proxy_info.cc
index b659d671c22929d96e613a0023c741ca6bd40f0b..27c45caf48bff7b31460c504c797473c307b10b0 100644
--- a/net/proxy/proxy_info.cc
+++ b/net/proxy/proxy_info.cc
@@ -68,7 +68,7 @@ std::string ProxyInfo::ToPacString() const {
}
bool ProxyInfo::Fallback(int net_error, const BoundNetLog& net_log) {
- return proxy_list_.Fallback(&proxy_retry_info_, net_error, net_log);
+ return proxy_list_.Fallback(proxy_retry_info_, net_error, net_log);
}
void ProxyInfo::DeprioritizeBadProxies(
« no previous file with comments | « no previous file | net/proxy/proxy_list.h » ('j') | net/proxy/proxy_list.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698