| Index: components/cronet/url_request_context_config.h
|
| diff --git a/components/cronet/url_request_context_config.h b/components/cronet/url_request_context_config.h
|
| index c40a112c5b108d7638349ecb7d3080d2054981e2..6b5966d9ae65ce75112e3f87846d13772c78a78e 100644
|
| --- a/components/cronet/url_request_context_config.h
|
| +++ b/components/cronet/url_request_context_config.h
|
| @@ -75,8 +75,17 @@ struct URLRequestContextConfig {
|
| std::string user_agent;
|
| // App-provided list of servers that support QUIC.
|
| ScopedVector<QuicHint> quic_hints;
|
| - // Comma-separted list of QUIC connection options.
|
| - std::string quic_connection_options;
|
| +
|
| + // Experimental options encoded as a string in a JSON format containing
|
| + // experiments and their corresponding configuration options. The format is
|
| + // a JSON object with the name of the experiment as the key, and experiment
|
| + // options as the value. The experiment options for an experiment is encoded
|
| + // as a JSON object with option name as the key and option value as the
|
| + // value:
|
| + // {"experiment1": {"option1": "option_value1", "option2": "option_value2",
|
| + // ...}, "experiment2: {"option3", "option_value3", ...}, ...}
|
| + std::string experimental_options;
|
| +
|
| // Enable Data Reduction Proxy with authentication key.
|
| std::string data_reduction_proxy_key;
|
| std::string data_reduction_primary_proxy;
|
|
|