summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-18 01:49:34 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-18 01:49:34 +0000
commitee45fed2fd2ce4cfce94f5bdb51529d8deb78bf0 (patch)
treeb7933a0bd4201c71629bcb8cde9e9207b04b1deb /net
parent00e1a962f20c2093aea32559d6266458e8081043 (diff)
downloadchromium_src-ee45fed2fd2ce4cfce94f5bdb51529d8deb78bf0.zip
chromium_src-ee45fed2fd2ce4cfce94f5bdb51529d8deb78bf0.tar.gz
chromium_src-ee45fed2fd2ce4cfce94f5bdb51529d8deb78bf0.tar.bz2
Punt the proxy errors into a bug.
This cuts down on error spew for test_shell, which lets us make progress on layout tests. Review URL: http://codereview.chromium.org/11220 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5594 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/http/http_network_layer.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/http/http_network_layer.cc b/net/http/http_network_layer.cc
index 0cd2fc4..78b8aa6 100644
--- a/net/http/http_network_layer.cc
+++ b/net/http/http_network_layer.cc
@@ -56,7 +56,11 @@ HttpNetworkLayer::HttpNetworkLayer(const ProxyInfo* pi)
#elif defined(OS_MACOSX)
proxy_resolver_.reset(new ProxyResolverMac());
#else
- NOTIMPLEMENTED();
+ // This used to be a NOTIMPLEMENTED(), but that logs as an error,
+ // screwing up layout tests.
+ LOG(WARNING) << "Proxies are not implemented; remove me once that's fixed.";
+ // http://code.google.com/p/chromium/issues/detail?id=4523 is the bug
+ // to implement this.
proxy_resolver_.reset(new ProxyResolverNull());
#endif
}