summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_network_layer.h')
-rw-r--r--net/http/http_network_layer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h
index 72fbca3..db7d0d9 100644
--- a/net/http/http_network_layer.h
+++ b/net/http/http_network_layer.h
@@ -40,6 +40,9 @@ class HttpProxyInfo;
class HttpNetworkLayer : public HttpTransactionFactory {
public:
+ explicit HttpNetworkLayer(const HttpProxyInfo* pi);
+ ~HttpNetworkLayer();
+
// This function hides the details of how a network layer gets instantiated
// and allows other implementations to be substituted.
static HttpTransactionFactory* CreateFactory(const HttpProxyInfo* pi);
@@ -47,9 +50,6 @@ class HttpNetworkLayer : public HttpTransactionFactory {
// If value is true, then WinHTTP will be used.
static void UseWinHttp(bool value);
- HttpNetworkLayer(const HttpProxyInfo* pi);
- ~HttpNetworkLayer();
-
// HttpTransactionFactory methods:
virtual HttpTransaction* CreateTransaction();
virtual HttpCache* GetCache();