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

Unified Diff: chrome/browser/profiles/profile_impl.h

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.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index f4945cc88777b7b61a7f01da8998330c2aafa68a..8bed9305fcf221873df3ccb379dcb390a8c83e95 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -16,6 +16,7 @@
#include "base/memory/ref_counted.h"
#include "base/timer/timer.h"
#include "build/build_config.h"
+#include "chrome/browser/net/net_pref_observer.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_impl_io_data.h"
#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h"
@@ -219,11 +220,12 @@ class ProfileImpl : public Profile {
pref_validation_delegate_;
// Keep |prefs_| on top for destruction order because |extension_prefs_|,
- // |io_data_| and others store pointers to |prefs_| and shall be destructed
- // first.
+ // |net_pref_observer_|, |io_data_| and others store pointers to |prefs_| and
+ // shall be destructed first.
scoped_refptr<user_prefs::PrefRegistrySyncable> pref_registry_;
std::unique_ptr<sync_preferences::PrefServiceSyncable> prefs_;
std::unique_ptr<sync_preferences::PrefServiceSyncable> otr_prefs_;
+ std::unique_ptr<NetPrefObserver> net_pref_observer_;
ProfileImplIOData::Handle io_data_;
#if BUILDFLAG(ENABLE_EXTENSIONS)
scoped_refptr<ExtensionSpecialStoragePolicy>

Powered by Google App Engine
This is Rietveld 408576698