| Index: chrome/browser/browser_process_impl.h
|
| ===================================================================
|
| --- chrome/browser/browser_process_impl.h (revision 76198)
|
| +++ chrome/browser/browser_process_impl.h (working copy)
|
| @@ -57,6 +57,7 @@
|
| #if defined(USE_X11)
|
| virtual base::Thread* background_x11_thread();
|
| #endif
|
| + virtual WatchDogThread* watchdog_thread();
|
| virtual ProfileManager* profile_manager();
|
| virtual PrefService* local_state();
|
| virtual DevToolsManager* devtools_manager();
|
| @@ -123,6 +124,7 @@
|
| void CreateDBThread();
|
| void CreateProcessLauncherThread();
|
| void CreateCacheThread();
|
| + void CreateWatchdogThread();
|
| void CreateTemplateURLModel();
|
| void CreateProfileManager();
|
| void CreateWebDataService();
|
| @@ -170,6 +172,9 @@
|
| bool created_cache_thread_;
|
| scoped_ptr<base::Thread> cache_thread_;
|
|
|
| + bool created_watchdog_thread_;
|
| + scoped_ptr<WatchDogThread> watchdog_thread_;
|
| +
|
| bool created_profile_manager_;
|
| scoped_ptr<ProfileManager> profile_manager_;
|
|
|
|
|