summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 22:03:15 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 22:03:15 +0000
commitc6e6700f0ad9075d6ef675dd4de0626570929000 (patch)
tree10621884ce2a81d52326ac3d8e32cc1063b88895 /chrome/browser/browser.h
parent83ec6d395d0b8a836370579368e1b365a3abbca4 (diff)
downloadchromium_src-c6e6700f0ad9075d6ef675dd4de0626570929000.zip
chromium_src-c6e6700f0ad9075d6ef675dd4de0626570929000.tar.gz
chromium_src-c6e6700f0ad9075d6ef675dd4de0626570929000.tar.bz2
Move the hang monitor to the BrowserView, since it's highly Windows/HWND specific.
http://crbug.com/4310 Review URL: http://codereview.chromium.org/10601 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5211 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser.h')
-rw-r--r--chrome/browser/browser.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index 0855d2f..dcbb3b7 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -6,8 +6,6 @@
#define CHROME_BROWSER_BROWSER_H_
#include "chrome/browser/controller.h"
-#include "chrome/browser/hang_monitor/hung_plugin_action.h"
-#include "chrome/browser/hang_monitor/hung_window_detector.h"
#include "chrome/browser/shell_dialogs.h"
#include "chrome/browser/browser_type.h"
#include "chrome/browser/session_id.h"
@@ -526,19 +524,6 @@ class Browser : public TabStripModelDelegate,
// The following factory is used to close the frame at a later time.
ScopedRunnableMethodFactory<Browser> method_factory_;
- // This object is used to perform periodic actions in a worker
- // thread. It is currently used to monitor hung plugin windows.
- WorkerThreadTicker ticker_;
-
- // This object is initialized with the frame window HWND. This
- // object is also passed as a tick handler with the ticker_ object.
- // It is used to periodically monitor for hung plugin windows
- HungWindowDetector hung_window_detector_;
-
- // This object is invoked by hung_window_detector_ when it detects a hung
- // plugin window.
- HungPluginAction hung_plugin_action_;
-
// This browser type.
BrowserType::Type type_;