From 40fc7815b1e017cbeb31a7773f4c61bae4677bf6 Mon Sep 17 00:00:00 2001 From: "ericroman@google.com" Date: Thu, 15 Jan 2009 07:02:09 +0000 Subject: post-winhttp cleanup: remove a todo. Review URL: http://codereview.chromium.org/18219 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8086 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/proxy_service.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'net/proxy/proxy_service.cc') diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc index 06141f6..f1c9865 100644 --- a/net/proxy/proxy_service.cc +++ b/net/proxy/proxy_service.cc @@ -293,15 +293,7 @@ ProxyService* ProxyService::Create(const ProxyInfo* pi) { if (pi) { // The ProxyResolver is set to NULL, since it should never be called // (because the configuration will never require PAC). - ProxyService* proxy_service = - new ProxyService(new ProxyConfigServiceFixed(*pi), NULL); - - // TODO(eroman): remove this WinHTTP hack once it is no more. - // We keep a copy of the ProxyInfo that was used to create the - // proxy service, so we can pass it to WinHTTP. - proxy_service->proxy_info_.reset(new ProxyInfo(*pi)); - - return proxy_service; + return new ProxyService(new ProxyConfigServiceFixed(*pi), NULL); } #if defined(OS_WIN) return new ProxyService(new ProxyConfigServiceWin(), -- cgit v1.1