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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 7827033: Introduce net::HttpServerPropertiesManager to manage server-specific properties. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/browser_process_impl.h
===================================================================
--- chrome/browser/browser_process_impl.h (revision 99284)
+++ chrome/browser/browser_process_impl.h (working copy)
@@ -66,6 +66,7 @@
#endif
virtual ProfileManager* profile_manager();
virtual PrefService* local_state();
+ virtual SpdyConfigServiceManager* spdy_config_service_manager();
virtual DevToolsManager* devtools_manager();
virtual SidebarManager* sidebar_manager();
virtual ui::Clipboard* clipboard();
@@ -149,6 +150,7 @@
void CreateProfileManager();
void CreateWebDataService();
void CreateLocalState();
+ void CreateSpdyConfigServiceManager();
void CreateViewedPageTracker();
void CreateIconManager();
void CreateDevToolsManager();
@@ -213,6 +215,9 @@
bool created_local_state_;
scoped_ptr<PrefService> local_state_;
+ bool created_spdy_config_service_manager_;
+ scoped_refptr<SpdyConfigServiceManager> spdy_config_service_manager_;
+
bool created_icon_manager_;
scoped_ptr<IconManager> icon_manager_;

Powered by Google App Engine
This is Rietveld 408576698