| 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_;
|
|
|
|
|