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

Unified Diff: components/cronet/url_request_context_config_unittest.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
« no previous file with comments | « components/cronet/url_request_context_config.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/url_request_context_config_unittest.cc
diff --git a/components/cronet/url_request_context_config_unittest.cc b/components/cronet/url_request_context_config_unittest.cc
index c129a8fe236bd452eb4cd0de853c31a6bcb81af4..5916dd02a2203f75ec347e6bd8b7dab0c3f0269a 100644
--- a/components/cronet/url_request_context_config_unittest.cc
+++ b/components/cronet/url_request_context_config_unittest.cc
@@ -57,7 +57,9 @@ TEST(URLRequestContextConfigTest, SetQuicExperimentalOptions) {
// Data reduction proxy secure proxy check URL.
"",
// MockCertVerifier to use for testing purposes.
- std::unique_ptr<net::CertVerifier>());
+ std::unique_ptr<net::CertVerifier>(),
+ // Certificate verifier cache data.
+ "");
net::URLRequestContextBuilder builder;
net::NetLog net_log;
@@ -134,7 +136,9 @@ TEST(URLRequestContextConfigTest, SetQuicConnectionMigrationOptions) {
// Data reduction proxy secure proxy check URL.
"",
// MockCertVerifier to use for testing purposes.
- std::unique_ptr<net::CertVerifier>());
+ std::unique_ptr<net::CertVerifier>(),
+ // Certificate verifier cache data.
+ "");
net::URLRequestContextBuilder builder;
net::NetLog net_log;
« no previous file with comments | « components/cronet/url_request_context_config.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698