diff options
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index b7412a4..286df53 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -54,6 +54,7 @@ class BrowserProcessImpl : public BrowserProcess, virtual base::Thread* db_thread(); virtual base::Thread* process_launcher_thread(); virtual base::Thread* cache_thread(); + virtual base::Thread* gpu_thread(); #if defined(USE_X11) virtual base::Thread* background_x11_thread(); #endif @@ -130,6 +131,7 @@ class BrowserProcessImpl : public BrowserProcess, void CreateDBThread(); void CreateProcessLauncherThread(); void CreateCacheThread(); + void CreateGpuThread(); void CreateWatchdogThread(); void CreateTemplateURLModel(); void CreateProfileManager(); @@ -178,6 +180,9 @@ class BrowserProcessImpl : public BrowserProcess, bool created_cache_thread_; scoped_ptr<base::Thread> cache_thread_; + bool created_gpu_thread_; + scoped_ptr<base::Thread> gpu_thread_; + bool created_watchdog_thread_; scoped_ptr<WatchDogThread> watchdog_thread_; |