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

Unified Diff: chrome/browser/profiles/off_the_record_profile_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/off_the_record_profile_io_data.cc
diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.cc b/chrome/browser/profiles/off_the_record_profile_io_data.cc
index f8838be99a4a6151e7eb0874ec9d625fddd45f91..735e809d88b97706af42a3ff18b6a64e2bf34eb9 100644
--- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
+++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
@@ -154,6 +154,12 @@ OffTheRecordProfileIOData::Handle::GetDevToolsNetworkControllerHandle() const {
return io_data_->network_controller_handle();
}
+void OffTheRecordProfileIOData::Handle::UpdateNetParamsOnIOThread(
+ net::HttpNetworkSession::ParamsUpdate params_update) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ io_data_->UpdateNetParamsOnIOThread(params_update);
+}
+
void OffTheRecordProfileIOData::Handle::LazyInitialize() const {
if (initialized_)
return;

Powered by Google App Engine
This is Rietveld 408576698