Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: net/url_request/url_request_context.h

Issue 9733005: net: add DNS certificate revocation experiment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/url_request/url_request_context.cc » ('j') | net/url_request/url_request_http_job.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context.h
diff --git a/net/url_request/url_request_context.h b/net/url_request/url_request_context.h
index 7d9d2e6085577888a7d76a1740ab6caf7e56575b..489ac22f591e5061c0f0805cd8b4aa4cd95c259e 100644
--- a/net/url_request/url_request_context.h
+++ b/net/url_request/url_request_context.h
@@ -25,6 +25,7 @@
namespace net {
class CertVerifier;
class CookieStore;
+class DnsRRResolver;
class FraudulentCertificateReporter;
class FtpTransactionFactory;
class HostResolver;
@@ -189,6 +190,8 @@ class NET_EXPORT URLRequestContext
job_factory_ = job_factory;
}
+ DnsRRResolver* dnsrr_resolver() const { return dnsrr_resolver_.get(); }
+
protected:
friend class base::RefCountedThreadSafe<URLRequestContext>;
@@ -226,6 +229,7 @@ class NET_EXPORT URLRequestContext
HttpTransactionFactory* http_transaction_factory_;
FtpTransactionFactory* ftp_transaction_factory_;
const URLRequestJobFactory* job_factory_;
+ scoped_ptr<DnsRRResolver> dnsrr_resolver_;
// ---------------------------------------------------------------------------
// Important: When adding any new members below, consider whether they need to
« no previous file with comments | « no previous file | net/url_request/url_request_context.cc » ('j') | net/url_request/url_request_http_job.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698