summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_info.cc
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-07 23:02:18 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-07 23:02:18 +0000
commit18547425e7a2ccb072f0788ec0d69e3dc8c47b72 (patch)
treee98793afdef50df8c3eb8b79efd2b5ec44e98a18 /net/proxy/proxy_info.cc
parentf9f54129c04affdbdc83804333b8625e11987559 (diff)
downloadchromium_src-18547425e7a2ccb072f0788ec0d69e3dc8c47b72.zip
chromium_src-18547425e7a2ccb072f0788ec0d69e3dc8c47b72.tar.gz
chromium_src-18547425e7a2ccb072f0788ec0d69e3dc8c47b72.tar.bz2
Log the results of proxy resolution to LoadLog when "full logging mode" is enabled.
Examples of what the logged text looks like: "Resolved proxy list: PROXY foobar:6233" "Resolved proxy list: DIRECT" "Resolved proxy list: PROXY foobar:80;SOCKS5 baz:1080;DIRECT" Review URL: http://codereview.chromium.org/518042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35749 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_info.cc')
-rw-r--r--net/proxy/proxy_info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/proxy_info.cc b/net/proxy/proxy_info.cc
index 36e9426..796d3417 100644
--- a/net/proxy/proxy_info.cc
+++ b/net/proxy/proxy_info.cc
@@ -25,7 +25,7 @@ void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server) {
proxy_list_.SetSingleProxyServer(proxy_server);
}
-std::string ProxyInfo::ToPacString() {
+std::string ProxyInfo::ToPacString() const {
return proxy_list_.ToPacString();
}