diff options
author | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 18:51:49 +0000 |
---|---|---|
committer | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 18:51:49 +0000 |
commit | a19c97d7fb9c2a8dce965e91575669fbbb8ea537 (patch) | |
tree | 3b883320bc084e0150c1e3a7675779a9a804d8a4 /chrome/browser/net | |
parent | 6e89290d7d706c0adedaf01713425094d4096526 (diff) | |
download | chromium_src-a19c97d7fb9c2a8dce965e91575669fbbb8ea537.zip chromium_src-a19c97d7fb9c2a8dce965e91575669fbbb8ea537.tar.gz chromium_src-a19c97d7fb9c2a8dce965e91575669fbbb8ea537.tar.bz2 |
The ChromeURLRequestContext(ChromeURLRequestContext* other)
constructor should copy cert_verifier_ and dnsrr_resolver_.
R=agl
BUG=63357
TEST=none
Review URL: http://codereview.chromium.org/5927005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net')
-rw-r--r-- | chrome/browser/net/chrome_url_request_context.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/net/chrome_url_request_context.cc b/chrome/browser/net/chrome_url_request_context.cc index eb9e001..16adfc8 100644 --- a/chrome/browser/net/chrome_url_request_context.cc +++ b/chrome/browser/net/chrome_url_request_context.cc @@ -827,6 +827,9 @@ ChromeURLRequestContext::ChromeURLRequestContext( // Set URLRequestContext members net_log_ = other->net_log_; host_resolver_ = other->host_resolver_; + cert_verifier_ = other->cert_verifier_; + dnsrr_resolver_ = other->dnsrr_resolver_; + // TODO(agl): How do we copy dns_cert_checker_, which is a scoped_ptr? proxy_service_ = other->proxy_service_; ssl_config_service_ = other->ssl_config_service_; http_transaction_factory_ = other->http_transaction_factory_; |