Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(939)

Unified Diff: net/http/http_network_layer.cc

Issue 17635: Remove HttpTransactionWinHttp and the --winhttp command-line... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_network_layer.h ('k') | net/http/http_transaction_winhttp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_layer.cc
===================================================================
--- net/http/http_network_layer.cc (revision 7967)
+++ net/http/http_network_layer.cc (working copy)
@@ -8,38 +8,19 @@
#include "net/base/client_socket_factory.h"
#include "net/http/http_network_session.h"
#include "net/http/http_network_transaction.h"
-#if defined(OS_WIN)
-#include "net/http/http_transaction_winhttp.h"
-#endif
namespace net {
//-----------------------------------------------------------------------------
-#if defined(OS_WIN)
// static
-bool HttpNetworkLayer::use_winhttp_ = false;
-#endif
-
-// static
HttpTransactionFactory* HttpNetworkLayer::CreateFactory(
ProxyService* proxy_service) {
DCHECK(proxy_service);
-#if defined(OS_WIN)
- if (use_winhttp_)
- return new HttpTransactionWinHttp::Factory(proxy_service);
-#endif
return new HttpNetworkLayer(proxy_service);
}
-#if defined(OS_WIN)
-// static
-void HttpNetworkLayer::UseWinHttp(bool value) {
- use_winhttp_ = value;
-}
-#endif
-
//-----------------------------------------------------------------------------
HttpNetworkLayer::HttpNetworkLayer(ProxyService* proxy_service)
« no previous file with comments | « net/http/http_network_layer.h ('k') | net/http/http_transaction_winhttp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698