summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/url_request/url_request_context.cc')
-rw-r--r--net/url_request/url_request_context.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index 2f558cc..6eb075c 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -7,24 +7,22 @@
#include "base/string_util.h"
#include "net/base/cookie_store.h"
#include "net/base/host_resolver.h"
-#include "net/ftp/ftp_transaction_factory.h"
-#include "net/http/http_transaction_factory.h"
namespace net {
URLRequestContext::URLRequestContext()
- : is_main_(false),
- net_log_(NULL),
+ : net_log_(NULL),
host_resolver_(NULL),
cert_verifier_(NULL),
dnsrr_resolver_(NULL),
dns_cert_checker_(NULL),
+ http_transaction_factory_(NULL),
+ ftp_transaction_factory_(NULL),
http_auth_handler_factory_(NULL),
network_delegate_(NULL),
cookie_policy_(NULL),
transport_security_state_(NULL),
- http_transaction_factory_(NULL),
- ftp_transaction_factory_(NULL) {
+ is_main_(false) {
}
void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {