Chromium Code Reviews

Unified Diff: net/proxy/proxy_service.cc

Issue 518042: Log the results of proxy resolution to LoadLog when "full logging mode" is en... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc's comments Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« 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
===================================================================
--- net/proxy/proxy_service.cc (revision 35554)
+++ net/proxy/proxy_service.cc (working copy)
@@ -158,13 +158,7 @@
resolve_job_ = NULL;
config_id_ = ProxyConfig::INVALID_ID;
- // Clean up the results list.
- if (result_code == OK)
- results_->RemoveBadProxies(service_->proxy_retry_info_);
-
- LoadLog::EndEvent(load_log_, LoadLog::TYPE_PROXY_SERVICE);
-
- return result_code;
+ return service_->DidFinishResolvingProxy(results_, result_code, load_log_);
}
LoadLog* load_log() const { return load_log_; }
@@ -277,10 +271,8 @@
// using a direct connection, or when the config is bad.
UpdateConfigIfOld(load_log);
int rv = TryToCompleteSynchronously(url, result);
- if (rv != ERR_IO_PENDING) {
- LoadLog::EndEvent(load_log, LoadLog::TYPE_PROXY_SERVICE);
- return rv;
- }
+ if (rv != ERR_IO_PENDING)
+ return DidFinishResolvingProxy(result, rv, load_log);
scoped_refptr<PacRequest> req =
new PacRequest(this, url, result, callback, load_log);
@@ -477,6 +469,29 @@
pending_requests_.erase(it);
}
+int ProxyService::DidFinishResolvingProxy(ProxyInfo* result,
+ int result_code,
+ LoadLog* load_log) {
+ // Log the result of the proxy resolution.
+ if (result_code == OK) {
+ // When full logging is enabled, dump the proxy list.
+ if (LoadLog::IsUnbounded(load_log)) {
+ LoadLog::AddString(
+ load_log,
+ std::string("Resolved proxy list: ") + result->ToPacString());
+ }
+ } else {
+ LoadLog::AddErrorCode(load_log, result_code);
+ }
+
+ // Clean up the results list.
+ if (result_code == OK)
+ result->RemoveBadProxies(proxy_retry_info_);
+
+ LoadLog::EndEvent(load_log, LoadLog::TYPE_PROXY_SERVICE);
+ return result_code;
+}
+
void ProxyService::SetProxyScriptFetcher(
ProxyScriptFetcher* proxy_script_fetcher) {
if (init_proxy_resolver_.get()) {
« 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