Chromium Code Reviews| Index: components/cronet/ios/cronet_environment.h |
| diff --git a/components/cronet/ios/cronet_environment.h b/components/cronet/ios/cronet_environment.h |
| index 59cb79627eaae374f1637f011f475303f506227b..8c9da985aa8d7bc6018ee51f606adace03c95aa4 100644 |
| --- a/components/cronet/ios/cronet_environment.h |
| +++ b/components/cronet/ios/cronet_environment.h |
| @@ -91,6 +91,10 @@ class CronetEnvironment { |
| http_cache_ = http_cache; |
| } |
| + void set_experimental_options(std::string experimental_options) { |
|
mef
2017/03/21 20:44:57
const std::string&
|
| + experimental_options_ = experimental_options; |
| + } |
| + |
| void SetHostResolverRules(const std::string& host_resolver_rules); |
| void set_ssl_key_log_file_name(const std::string& ssl_key_log_file_name) { |
| @@ -134,6 +138,7 @@ class CronetEnvironment { |
| bool quic_enabled_; |
| std::string quic_user_agent_id_; |
| std::string accept_language_; |
| + std::string experimental_options_; |
| std::string ssl_key_log_file_name_; |
| URLRequestContextConfig::HttpCacheType http_cache_; |