summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-27 00:51:37 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-27 00:51:37 +0000
commit32e9717df3799e2ce60a85bac81ac95732fb794c (patch)
tree43496b297839e6256fd066f056ab9d2a671e0cf9 /net
parent62655f97965430c3b89a471a946d82e8b97ac0df (diff)
downloadchromium_src-32e9717df3799e2ce60a85bac81ac95732fb794c.zip
chromium_src-32e9717df3799e2ce60a85bac81ac95732fb794c.tar.gz
chromium_src-32e9717df3799e2ce60a85bac81ac95732fb794c.tar.bz2
Update a WARNING with a bug URL.
Review URL: http://codereview.chromium.org/28228 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/proxy/proxy_service.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index daf0913..438f147 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -354,11 +354,11 @@ ProxyService* ProxyService::Create(const ProxyInfo* pi) {
return new ProxyService(new ProxyConfigServiceMac(),
new ProxyResolverMac());
#else
- // 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.
+ // TODO(port): implement ProxyConfigServiceLinux as well as make use of
+ // ProxyResolverV8 once it's implemented.
+ // See:
+ // - http://code.google.com/p/chromium/issues/detail?id=8143
+ // - http://code.google.com/p/chromium/issues/detail?id=2764
return CreateNull();
#endif
}