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

Unified Diff: components/cronet/url_request_context_config_unittest.cc

Issue 1833203002: Plumb SSLKEYLOGFILE from Cronet to net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comment Created 4 years, 9 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 d78cdc6c7d4f89db9a579f8032bf3c960e3fb681..8989d0188267ab4fb043a195c3242ac2b8975508 100644
--- a/components/cronet/url_request_context_config_unittest.cc
+++ b/components/cronet/url_request_context_config_unittest.cc
@@ -60,7 +60,7 @@ TEST(URLRequestContextConfigTest, SetQuicExperimentalOptions) {
net::URLRequestContextBuilder builder;
net::NetLog net_log;
- config.ConfigureURLRequestContextBuilder(&builder, &net_log);
+ config.ConfigureURLRequestContextBuilder(&builder, &net_log, nullptr);
// Set a ProxyConfigService to avoid DCHECK failure when building.
builder.set_proxy_config_service(make_scoped_ptr(
new net::ProxyConfigServiceFixed(net::ProxyConfig::CreateDirect())));
@@ -137,7 +137,7 @@ TEST(URLRequestContextConfigTest, SetQuicConnectionMigrationOptions) {
net::URLRequestContextBuilder builder;
net::NetLog net_log;
- config.ConfigureURLRequestContextBuilder(&builder, &net_log);
+ config.ConfigureURLRequestContextBuilder(&builder, &net_log, nullptr);
// Set a ProxyConfigService to avoid DCHECK failure when building.
builder.set_proxy_config_service(make_scoped_ptr(
new net::ProxyConfigServiceFixed(net::ProxyConfig::CreateDirect())));
« 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