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

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: Added comment 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 c6522a884b7aeb5e11d1b53ba43faa4e6627740a..f6a04b2a63b4cfb0987348b1d696037b3c0be33c 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -179,11 +179,17 @@ void ProfileImplIOData::Handle::Init(
BrowserThread::GetMessageLoopProxyForThread(
BrowserThread::UI)).Pass());
+ // TODO(tbansal): Move this to IO thread once the data reduction proxy
+ // params are unified into a single object.
+ bool enable_quic_for_data_reduction_proxy =
+ IOThread::ShouldEnableQuicForDataReductionProxy();
+
DataReductionProxyChromeSettingsFactory::GetForBrowserContext(profile_)->
InitDataReductionProxySettings(io_data_->data_reduction_proxy_io_data(),
profile_->GetPrefs(),
g_browser_process->local_state(),
- profile_->GetRequestContext());
+ profile_->GetRequestContext(),
+ enable_quic_for_data_reduction_proxy);
}
content::ResourceContext*

Powered by Google App Engine
This is Rietveld 408576698