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

Unified Diff: components/cronet/url_request_context_config.h

Issue 1389213003: [Cronet] Use Https for Quic Test Server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ryancl
Patch Set: Address Paul's comments Created 5 years, 2 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: components/cronet/url_request_context_config.h
diff --git a/components/cronet/url_request_context_config.h b/components/cronet/url_request_context_config.h
index d21cc409474a0b64c8d03a74b630b9ece7d3ce32..91bbb8236cac47e5fd9b7acf6ec5cad4dc8af0a0 100644
--- a/components/cronet/url_request_context_config.h
+++ b/components/cronet/url_request_context_config.h
@@ -12,6 +12,7 @@
#include "base/memory/scoped_vector.h"
namespace net {
+class CertVerifier;
class URLRequestContextBuilder;
} // namespace net
@@ -82,6 +83,9 @@ struct URLRequestContextConfig {
std::string data_reduction_fallback_proxy;
std::string data_reduction_secure_proxy_check_url;
+ // Cert verifier for testing.
pauljensen 2015/10/19 18:52:29 Cert->Certificate
xunjieli 2015/10/19 20:24:15 Done.
+ net::CertVerifier* mock_cert_verifier;
pauljensen 2015/10/19 18:52:29 scoped_ptr
xunjieli 2015/10/19 20:24:15 Done.
+
private:
DISALLOW_COPY_AND_ASSIGN(URLRequestContextConfig);
};

Powered by Google App Engine
This is Rietveld 408576698