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

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

Issue 2546533003: Respect QuicAllowed policy for new streams (Closed)
Patch Set: Rebase Created 3 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
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 52d667812aec782106d4e683103e6da47b09047c..77bc74a83488fb64b8baa60e74497ea2e10ade0d 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -370,6 +370,13 @@ void ProfileImplIOData::Handle::ClearNetworkingHistorySince(
completion));
}
+void ProfileImplIOData::Handle::UpdateNetParamsOnIOThread(
+ net::HttpNetworkSession::ParamsUpdate params_update) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+
+ io_data_->UpdateNetParamsOnIOThread(params_update);
+}
+
void ProfileImplIOData::Handle::LazyInitialize() const {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (initialized_)

Powered by Google App Engine
This is Rietveld 408576698