diff options
author | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 12:34:18 +0000 |
---|---|---|
committer | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-14 12:34:18 +0000 |
commit | ede9666e3dc07dde4436df9bde8ce8daefdce140 (patch) | |
tree | 044dea60297380fac5352c2ac23f8268be7b3152 /net/url_request/url_request_context.cc | |
parent | ebabd985fb27cbf50d27a4e0d1565b08f2f167af (diff) | |
download | chromium_src-ede9666e3dc07dde4436df9bde8ce8daefdce140.zip chromium_src-ede9666e3dc07dde4436df9bde8ce8daefdce140.tar.gz chromium_src-ede9666e3dc07dde4436df9bde8ce8daefdce140.tar.bz2 |
Make the URLRequestContext constant
The URLRequestContext is basically a collection of pointers to other data structures. This CL makes sure that these pointers are not easily modified after the construction of the URLRequestContext.
BUG=67597
TEST=no
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=92511
Review URL: http://codereview.chromium.org/7322010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92521 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_context.cc')
-rw-r--r-- | net/url_request/url_request_context.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc index f34e196..608196c 100644 --- a/net/url_request/url_request_context.cc +++ b/net/url_request/url_request_context.cc @@ -22,6 +22,7 @@ URLRequestContext::URLRequestContext() proxy_service_(NULL), network_delegate_(NULL), transport_security_state_(NULL), + ftp_auth_cache_(new FtpAuthCache), http_transaction_factory_(NULL), ftp_transaction_factory_(NULL), job_factory_(NULL) { |