| 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..56025cd4246e4122a9d6eedfb9dac42d4a615d29 100644
|
| --- a/components/cronet/url_request_context_config_unittest.cc
|
| +++ b/components/cronet/url_request_context_config_unittest.cc
|
| @@ -59,7 +59,9 @@ TEST(URLRequestContextConfigTest, SetQuicExperimentalOptions) {
|
| // MockCertVerifier to use for testing purposes.
|
| std::unique_ptr<net::CertVerifier>(),
|
| // Enable network quality estimator.
|
| - false);
|
| + false,
|
| + // Enable Public Key Pinning bypass for local trust anchors.
|
| + true);
|
|
|
| net::URLRequestContextBuilder builder;
|
| net::NetLog net_log;
|
| @@ -138,7 +140,9 @@ TEST(URLRequestContextConfigTest, SetQuicConnectionMigrationOptions) {
|
| // MockCertVerifier to use for testing purposes.
|
| std::unique_ptr<net::CertVerifier>(),
|
| // Enable network quality estimator.
|
| - false);
|
| + false,
|
| + // Enable Public Key Pinning bypass for local trust anchors.
|
| + true);
|
|
|
| net::URLRequestContextBuilder builder;
|
| net::NetLog net_log;
|
|
|