From 669f1476f3c5cf464e7b82d6338ba7ae41bf8ce0 Mon Sep 17 00:00:00 2001 From: "wtc@google.com" Date: Tue, 13 Jan 2009 21:37:21 +0000 Subject: Remove HttpTransactionWinHttp and the --winhttp command-line switch. Remove WinHttpThrottle and CertStatusCache, which are only used by HttpTransactionWinHttp. Fix nits reported by cpplint.py. R=eroman,darin BUG=6323 Review URL: http://codereview.chromium.org/17635 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7970 0039d316-1c4b-4281-b951-d872f2087c98 --- net/http/http_network_layer.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'net/http/http_network_layer.h') diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h index 5364642..8424b2f 100644 --- a/net/http/http_network_layer.h +++ b/net/http/http_network_layer.h @@ -25,21 +25,12 @@ class HttpNetworkLayer : public HttpTransactionFactory { // and allows other implementations to be substituted. static HttpTransactionFactory* CreateFactory(ProxyService* proxy_service); -#if defined(OS_WIN) - // If value is true, then WinHTTP will be used. - static void UseWinHttp(bool value); -#endif - // HttpTransactionFactory methods: virtual HttpTransaction* CreateTransaction(); virtual HttpCache* GetCache(); virtual void Suspend(bool suspend); private: -#if defined(OS_WIN) - static bool use_winhttp_; -#endif - // The proxy service being used for the session. ProxyService* proxy_service_; -- cgit v1.1