diff options
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 1ca493c..c0eb6d8 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -53,6 +53,7 @@ class ResourceDispatcherHost; class DebuggerWrapper; class Thread; class WebAppInstallerService; +class SharedEvent; class SuspendController; namespace sandbox { @@ -146,6 +147,9 @@ class BrowserProcess { // TODO(beng): remove once XPFrame/VistaFrame are gone. virtual bool IsUsingNewFrames() = 0; + // Returns an event that is signaled when the browser shutdown. + virtual HANDLE shutdown_event() = 0; + private: DISALLOW_EVIL_CONSTRUCTORS(BrowserProcess); }; |