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

Unified Diff: components/cronet/url_request_context_config.h

Issue 1665503002: [Cronet] Expose quic_user_agent_id and quic_prefer_aes config options. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document QUIC UAID string usage, don't pass it down unless QUIC is enabled. Created 4 years, 10 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
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.

Powered by Google App Engine
This is Rietveld 408576698