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

Unified Diff: chrome/browser/io_thread.h

Issue 1547273003: Set trusted SPDY proxy dynamically on per-profile basis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | chrome/browser/io_thread.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.h
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
index b7ca041b63978eeeddf1ec4473125169e29ce5d3..81526bcd98f086bbabb464a17b490886fe970254 100644
--- a/chrome/browser/io_thread.h
+++ b/chrome/browser/io_thread.h
@@ -81,6 +81,7 @@ class ProxyConfigService;
class ProxyService;
class SSLConfigService;
class TransportSecurityState;
+class TrustedSpdyProxyProvider;
class URLRequestBackoffManager;
class URLRequestContext;
class URLRequestContextGetter;
@@ -208,7 +209,10 @@ class IOThread : public content::BrowserThreadDelegate {
Optional<bool> enable_spdy_ping_based_connection_checking;
Optional<net::NextProto> spdy_default_protocol;
net::NextProtoVector next_protos;
- Optional<std::string> trusted_spdy_proxy;
+ // |trusted_spdy_proxy_provider| provides a trusted SPDY proxy that is
bengr 2016/01/11 22:29:35 There's no need to use || if what's enclosed is ob
tbansal1 2016/01/12 20:50:50 Done.
+ // allowed to push cross-origin resources. |trusted_spdy_proxy_provider|
+ // may be NULL.
+ scoped_ptr<net::TrustedSpdyProxyProvider> trusted_spdy_proxy_provider;
bengr 2016/01/11 22:29:35 I wonder if we should instead have a net::TrustedP
tbansal1 2016/01/12 20:50:50 Changed to TrustedSpdyProxyVerifier. TrustedProxy
std::set<net::HostPortPair> forced_spdy_exclusions;
Optional<bool> use_alternative_services;
Optional<double> alternative_service_probability_threshold;
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | chrome/browser/io_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698