diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-26 06:37:21 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-26 06:37:21 +0000 |
commit | c82b0682d1d66e38346a664ef83d1211f83b3b5f (patch) | |
tree | b7b9cdf69e4f9af85a59cfd5b885729c890ee7df /chrome/browser/browser_process.h | |
parent | e9e0a7d9f8fe4a3faecd62091a1910b1b27488cf (diff) | |
download | chromium_src-c82b0682d1d66e38346a664ef83d1211f83b3b5f.zip chromium_src-c82b0682d1d66e38346a664ef83d1211f83b3b5f.tar.gz chromium_src-c82b0682d1d66e38346a664ef83d1211f83b3b5f.tar.bz2 |
Revert 76015 - Added back thread watcher changes by
reverting the revert.
will revert the changes right away. trying to test
impact on memory on mac.
BUG=73915
TEST=performance tests
Review URL: http://codereview.chromium.org/6594011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76154 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index c1275db..8a1ab65a 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -39,6 +39,7 @@ class ResourceDispatcherHost; class SidebarManager; class TabCloseableStateWatcher; class ThumbnailGenerator; +class WatchDogThread; namespace base { class Thread; @@ -115,6 +116,9 @@ class BrowserProcess { virtual base::Thread* background_x11_thread() = 0; #endif + // Returns the thread that is used for health check of all browser threads. + virtual WatchDogThread* watchdog_thread() = 0; + virtual policy::BrowserPolicyConnector* browser_policy_connector() = 0; virtual IconManager* icon_manager() = 0; |