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

Unified Diff: components/cronet/url_request_context_config.cc

Issue 2029423004: QUIC/Cronet - Add Java glue layer to serialize and de-serialize (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert_serialize_0526
Patch Set: Created 4 years, 6 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.cc
diff --git a/components/cronet/url_request_context_config.cc b/components/cronet/url_request_context_config.cc
index 570173b1504c03507f148c1f5881e6b660566222..5eaf29483a26f7e83b0eb8ba9757b2b610dffbfc 100644
--- a/components/cronet/url_request_context_config.cc
+++ b/components/cronet/url_request_context_config.cc
@@ -249,7 +249,8 @@ URLRequestContextConfig::URLRequestContextConfig(
const std::string& data_reduction_primary_proxy,
const std::string& data_reduction_fallback_proxy,
const std::string& data_reduction_secure_proxy_check_url,
- std::unique_ptr<net::CertVerifier> mock_cert_verifier)
+ std::unique_ptr<net::CertVerifier> mock_cert_verifier,
+ const std::string& cert_verifier_data)
: enable_quic(enable_quic),
quic_user_agent_id(quic_user_agent_id),
enable_spdy(enable_spdy),
@@ -265,7 +266,8 @@ URLRequestContextConfig::URLRequestContextConfig(
data_reduction_fallback_proxy(data_reduction_fallback_proxy),
data_reduction_secure_proxy_check_url(
data_reduction_secure_proxy_check_url),
- mock_cert_verifier(std::move(mock_cert_verifier)) {}
+ mock_cert_verifier(std::move(mock_cert_verifier)),
+ cert_verifier_data(cert_verifier_data) {}
URLRequestContextConfig::~URLRequestContextConfig() {}
« no previous file with comments | « components/cronet/url_request_context_config.h ('k') | components/cronet/url_request_context_config_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698