summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authormarshall@chromium.org <marshall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-13 19:37:46 +0000
committermarshall@chromium.org <marshall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-13 19:37:46 +0000
commit160014dabd5f9ef2cdac3e0fa6016e3bac4fde48 (patch)
treef699c0c7dfd6325978cfc2f508f696619f05e483 /net
parentbef90f3d8bc8d17e76c1a5f5920b922aabab16a5 (diff)
downloadchromium_src-160014dabd5f9ef2cdac3e0fa6016e3bac4fde48.zip
chromium_src-160014dabd5f9ef2cdac3e0fa6016e3bac4fde48.tar.gz
chromium_src-160014dabd5f9ef2cdac3e0fa6016e3bac4fde48.tar.bz2
Add missing initializer for |proxy_service_| in URLRequestContext constructor.
TEST=none BUG=none Review URL: http://codereview.chromium.org/7021004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85305 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/url_request/url_request_context.cc1
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 c197ebe..0057f2a 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -20,6 +20,7 @@ URLRequestContext::URLRequestContext()
dnsrr_resolver_(NULL),
dns_cert_checker_(NULL),
http_auth_handler_factory_(NULL),
+ proxy_service_(NULL),
network_delegate_(NULL),
transport_security_state_(NULL),
http_transaction_factory_(NULL),