| 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 29e1c85a71441b91ef890416335947aff7467196..4031447d19d326505ca53fcc161db81431e2b41f 100644
|
| --- a/components/cronet/url_request_context_config.h
|
| +++ b/components/cronet/url_request_context_config.h
|
| @@ -73,6 +73,8 @@ struct URLRequestContextConfig {
|
| URLRequestContextConfig(
|
| // Enable QUIC.
|
| bool enable_quic,
|
| + // QUIC User Agent ID.
|
| + const std::string& quic_user_agent_id,
|
| // Enable SPDY.
|
| bool enable_spdy,
|
| // Enable SDCH.
|
| @@ -109,6 +111,8 @@ struct URLRequestContextConfig {
|
|
|
| // Enable QUIC.
|
| const bool enable_quic;
|
| + // QUIC User Agent ID.
|
| + const std::string quic_user_agent_id;
|
| // Enable SPDY.
|
| const bool enable_spdy;
|
| // Enable SDCH.
|
|
|