diff options
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index 18ce8be..adff28b 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -36,6 +36,7 @@ class SuspendController; namespace base { class Thread; +class WaitableEvent; } namespace sandbox { class BrokerServices; @@ -128,10 +129,10 @@ class BrowserProcess { ResourceDispatcherHost* rdh = resource_dispatcher_host(); return rdh ? rdh->download_request_manager() : NULL; } +#endif // Returns an event that is signaled when the browser shutdown. - virtual HANDLE shutdown_event() = 0; -#endif + virtual base::WaitableEvent* shutdown_event() = 0; // Returns a reference to the user-data-dir based profiles vector. std::vector<std::wstring>& user_data_dir_profiles() { |