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

Unified Diff: components/cronet/url_request_context_config_unittest.cc

Issue 2052363002: Enable public key pinning of local trust anchors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: url_request_context_config_unittest fix 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_unittest.cc
diff --git a/components/cronet/url_request_context_config_unittest.cc b/components/cronet/url_request_context_config_unittest.cc
index 87b61dbb57c58b111a93a0791e1ef5860392b559..4d64839d117d3425dd54046faa8657b9ecf174ec 100644
--- a/components/cronet/url_request_context_config_unittest.cc
+++ b/components/cronet/url_request_context_config_unittest.cc
@@ -59,7 +59,7 @@ TEST(URLRequestContextConfigTest, SetQuicExperimentalOptions) {
// MockCertVerifier to use for testing purposes.
std::unique_ptr<net::CertVerifier>(),
// Enable network quality estimator.
- false);
+ false, true);
Ryan Sleevi 2016/07/01 01:17:24 Update documentation (see preceding lines)
kapishnikov 2016/07/01 17:20:54 Done.
net::URLRequestContextBuilder builder;
net::NetLog net_log;
@@ -138,7 +138,7 @@ TEST(URLRequestContextConfigTest, SetQuicConnectionMigrationOptions) {
// MockCertVerifier to use for testing purposes.
std::unique_ptr<net::CertVerifier>(),
// Enable network quality estimator.
- false);
+ false, true);
Ryan Sleevi 2016/07/01 01:17:24 Update documentation (see preceding lines)
kapishnikov 2016/07/01 17:20:54 Done.
net::URLRequestContextBuilder builder;
net::NetLog net_log;

Powered by Google App Engine
This is Rietveld 408576698