| Index: components/cronet/ios/test/start_cronet.mm
|
| diff --git a/components/cronet/ios/test/start_cronet.mm b/components/cronet/ios/test/start_cronet.mm
|
| index 148fe5333f2101a0e5afe1e14d3f768a5b479f54..957e26e4d778a983592abd8b57ff034907aae184 100644
|
| --- a/components/cronet/ios/test/start_cronet.mm
|
| +++ b/components/cronet/ios/test/start_cronet.mm
|
| @@ -21,7 +21,12 @@ void StartCronetIfNecessary(int port) {
|
| [Cronet setHttp2Enabled:true];
|
| [Cronet setQuicEnabled:true];
|
| [Cronet setAcceptLanguages:@"en-US,en"];
|
| - [Cronet setSslKeyLogFileName:@"SSLKEYLOGFILE"];
|
| + [Cronet
|
| + setExperimentalOptions:
|
| + [NSString
|
| + stringWithFormat:@"{\"ssl_key_log_file\":\"%@\"}",
|
| + [Cronet
|
| + getNetLogPathForFile:@"SSLKEYLOGFILE"]]];
|
| [Cronet addQuicHint:@"test.example.com" port:443 altPort:443];
|
| [Cronet enableTestCertVerifierForTesting];
|
| [Cronet start];
|
|
|