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

Unified Diff: net/url_request/url_request_context.cc

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
Index: net/url_request/url_request_context.cc
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index c2c784334cdccdd49894e6c3ab66e2cfaac50cb1..7ee6e34793d4e5f16d10a78994ba856e65015bf0 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -6,6 +6,7 @@
#include "base/compiler_specific.h"
#include "base/string_util.h"
+#include "net/base/dnsrr_resolver.h"
#include "net/base/host_resolver.h"
#include "net/cookies/cookie_store.h"
#include "net/ftp/ftp_transaction_factory.h"
@@ -28,7 +29,8 @@ URLRequestContext::URLRequestContext()
ftp_auth_cache_(new FtpAuthCache),
http_transaction_factory_(NULL),
ftp_transaction_factory_(NULL),
- job_factory_(NULL) {
+ job_factory_(NULL),
+ dnsrr_resolver_(new DnsRRResolver) {
}
void URLRequestContext::CopyFrom(URLRequestContext* other) {

Powered by Google App Engine
This is Rietveld 408576698