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

Unified Diff: net/proxy/proxy_service.cc

Issue 1735203002: Revert of Moving proxy resolution logic out of NetworkDelegate and into ProxyDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « net/proxy/proxy_service.h ('k') | net/proxy/proxy_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_service.cc
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index d6d410c205ef380d4f2209a2848fa08c6db8eae6..b385e52c966a293861ff90f0a44658af156af825 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -25,11 +25,11 @@
#include "net/base/completion_callback.h"
#include "net/base/load_flags.h"
#include "net/base/net_errors.h"
-#include "net/base/proxy_delegate.h"
#include "net/base/url_util.h"
#include "net/log/net_log.h"
#include "net/proxy/dhcp_proxy_script_fetcher.h"
#include "net/proxy/multi_threaded_proxy_resolver.h"
+#include "net/proxy/network_delegate_error_observer.h"
#include "net/proxy/proxy_config_service_fixed.h"
#include "net/proxy/proxy_resolver.h"
#include "net/proxy/proxy_resolver_factory.h"
@@ -768,7 +768,7 @@
PacRequest(ProxyService* service,
const GURL& url,
int load_flags,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
ProxyInfo* results,
const CompletionCallback& user_callback,
const BoundNetLog& net_log)
@@ -777,7 +777,7 @@
results_(results),
url_(url),
load_flags_(load_flags),
- proxy_delegate_(proxy_delegate),
+ network_delegate_(network_delegate),
resolve_job_(NULL),
config_id_(ProxyConfig::kInvalidConfigID),
config_source_(PROXY_CONFIG_SOURCE_UNKNOWN),
@@ -809,7 +809,7 @@
void StartAndCompleteCheckingForSynchronous() {
int rv = service_->TryToCompleteSynchronously(url_, load_flags_,
- proxy_delegate_, results_);
+ network_delegate_, results_);
if (rv == ERR_IO_PENDING)
rv = Start();
if (rv != ERR_IO_PENDING)
@@ -857,7 +857,7 @@
// Note that DidFinishResolvingProxy might modify |results_|.
int rv = service_->DidFinishResolvingProxy(
- url_, load_flags_, proxy_delegate_, results_, result_code, net_log_,
+ url_, load_flags_, network_delegate_, results_, result_code, net_log_,
creation_time_, script_executed);
// Make a note in the results which configuration was in use at the
@@ -911,7 +911,7 @@
ProxyInfo* results_;
GURL url_;
int load_flags_;
- ProxyDelegate* proxy_delegate_;
+ NetworkDelegate* network_delegate_;
ProxyResolver::RequestHandle resolve_job_;
ProxyConfig::ID config_id_; // The config id when the resolve was started.
ProxyConfigSource config_source_; // The source of proxy settings.
@@ -1013,11 +1013,16 @@
ProxyInfo* result,
const CompletionCallback& callback,
PacRequest** pac_request,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
const BoundNetLog& net_log) {
DCHECK(!callback.is_null());
- return ResolveProxyHelper(raw_url, load_flags, result, callback, pac_request,
- proxy_delegate, net_log);
+ return ResolveProxyHelper(raw_url,
+ load_flags,
+ result,
+ callback,
+ pac_request,
+ network_delegate,
+ net_log);
}
int ProxyService::ResolveProxyHelper(const GURL& raw_url,
@@ -1025,7 +1030,7 @@
ProxyInfo* result,
const CompletionCallback& callback,
PacRequest** pac_request,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
const BoundNetLog& net_log) {
DCHECK(CalledOnValidThread());
@@ -1046,10 +1051,11 @@
// Check if the request can be completed right away. (This is the case when
// using a direct connection for example).
- int rv = TryToCompleteSynchronously(url, load_flags, proxy_delegate, result);
+ int rv = TryToCompleteSynchronously(url, load_flags,
+ network_delegate, result);
if (rv != ERR_IO_PENDING) {
rv = DidFinishResolvingProxy(
- url, load_flags, proxy_delegate, result, rv, net_log,
+ url, load_flags, network_delegate, result, rv, net_log,
callback.is_null() ? TimeTicks() : TimeTicks::Now(), false);
return rv;
}
@@ -1057,8 +1063,9 @@
if (callback.is_null())
return ERR_IO_PENDING;
- scoped_refptr<PacRequest> req(new PacRequest(
- this, url, load_flags, proxy_delegate, result, callback, net_log));
+ scoped_refptr<PacRequest> req(
+ new PacRequest(this, url, load_flags, network_delegate,
+ result, callback, net_log));
if (current_state_ == STATE_READY) {
// Start the resolve request.
@@ -1080,20 +1087,25 @@
return rv; // ERR_IO_PENDING
}
-bool ProxyService::TryResolveProxySynchronously(const GURL& raw_url,
- int load_flags,
- ProxyInfo* result,
- ProxyDelegate* proxy_delegate,
- const BoundNetLog& net_log) {
+bool ProxyService:: TryResolveProxySynchronously(
+ const GURL& raw_url,
+ int load_flags,
+ ProxyInfo* result,
+ NetworkDelegate* network_delegate,
+ const BoundNetLog& net_log) {
CompletionCallback null_callback;
- return ResolveProxyHelper(raw_url, load_flags, result, null_callback,
- nullptr /* pac_request*/, proxy_delegate,
+ return ResolveProxyHelper(raw_url,
+ load_flags,
+ result,
+ null_callback,
+ NULL /* pac_request*/,
+ network_delegate,
net_log) == OK;
}
int ProxyService::TryToCompleteSynchronously(const GURL& url,
int load_flags,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
ProxyInfo* result) {
DCHECK_NE(STATE_NONE, current_state_);
@@ -1251,7 +1263,7 @@
ProxyInfo* result,
const CompletionCallback& callback,
PacRequest** pac_request,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
const BoundNetLog& net_log) {
DCHECK(CalledOnValidThread());
@@ -1267,7 +1279,7 @@
// list of bad proxies and we try again.
proxy_retry_info_.clear();
return ResolveProxy(url, load_flags, result, callback, pac_request,
- proxy_delegate, net_log);
+ network_delegate, net_log);
}
DCHECK(!result->is_empty());
@@ -1294,7 +1306,7 @@
}
void ProxyService::ReportSuccess(const ProxyInfo& result,
- ProxyDelegate* proxy_delegate) {
+ NetworkDelegate* network_delegate) {
DCHECK(CalledOnValidThread());
const ProxyRetryInfoMap& new_retry_info = result.proxy_retry_info();
@@ -1306,11 +1318,12 @@
ProxyRetryInfoMap::iterator existing = proxy_retry_info_.find(iter->first);
if (existing == proxy_retry_info_.end()) {
proxy_retry_info_[iter->first] = iter->second;
- if (proxy_delegate) {
+ if (network_delegate) {
const ProxyServer& bad_proxy =
ProxyServer::FromURI(iter->first, ProxyServer::SCHEME_HTTP);
const ProxyRetryInfo& proxy_retry_info = iter->second;
- proxy_delegate->OnFallback(bad_proxy, proxy_retry_info.net_error);
+ network_delegate->NotifyProxyFallback(bad_proxy,
+ proxy_retry_info.net_error);
}
}
else if (existing->second.bad_until < iter->second.bad_until)
@@ -1348,7 +1361,7 @@
int ProxyService::DidFinishResolvingProxy(const GURL& url,
int load_flags,
- ProxyDelegate* proxy_delegate,
+ NetworkDelegate* network_delegate,
ProxyInfo* result,
int result_code,
const BoundNetLog& net_log,
@@ -1376,12 +1389,13 @@
base::TimeDelta::FromMicroseconds(100),
base::TimeDelta::FromSeconds(20), 50);
}
+
// Log the result of the proxy resolution.
if (result_code == OK) {
- // Allow the proxy delegate to interpose on the resolution decision,
+ // Allow the network delegate to interpose on the resolution decision,
// possibly modifying the ProxyInfo.
- if (proxy_delegate)
- proxy_delegate->OnResolveProxy(url, load_flags, *this, result);
+ if (network_delegate)
+ network_delegate->NotifyResolveProxy(url, load_flags, *this, result);
net_log.AddEvent(NetLog::TYPE_PROXY_SERVICE_RESOLVED_PROXY_LIST,
base::Bind(&NetLogFinishedResolvingProxyCallback, result));
@@ -1410,10 +1424,10 @@
result->UseDirect();
result_code = OK;
- // Allow the proxy delegate to interpose on the resolution decision,
+ // Allow the network delegate to interpose on the resolution decision,
// possibly modifying the ProxyInfo.
- if (proxy_delegate)
- proxy_delegate->OnResolveProxy(url, load_flags, *this, result);
+ if (network_delegate)
+ network_delegate->NotifyResolveProxy(url, load_flags, *this, result);
} else {
result_code = ERR_MANDATORY_PROXY_CONFIGURATION_FAILED;
}
« no previous file with comments | « net/proxy/proxy_service.h ('k') | net/proxy/proxy_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698