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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.cc

Issue 903213003: Enable QUIC for proxies based on Finch config and command line switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Ben's comments Created 5 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: chrome/browser/profiles/profile_impl_io_data.cc
diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc
index e2cb0ec4ef3e10a0c01acdce32227b3e2d5591a7..c029f329c26dadfb397d45380bab23c3b08a049a 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -184,6 +184,15 @@ void ProfileImplIOData::Handle::Init(
profile_->GetPrefs(),
g_browser_process->local_state(),
profile_->GetRequestContext());
+
+ const base::CommandLine& command_line =
+ *base::CommandLine::ForCurrentProcess();
+ bool quic_enabled_for_proxies =
+ IOThread::ShouldEnableQuicForProxies(command_line,
+ IOThread::QuicTrialGroup());
mmenke 2015/02/12 18:10:45 Calling IOThread methods on the UI threads, even s
tbansal1 2015/02/13 17:10:40 Fixed, now calling it on IO thread.
+
+ DataReductionProxyChromeSettingsFactory::GetForBrowserContext(profile_)->
+ EnableQuic(quic_enabled_for_proxies);
}
content::ResourceContext*

Powered by Google App Engine
This is Rietveld 408576698