diff options
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index 6f51102..3b8732c 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -167,7 +167,7 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe { return memory_model_; } - virtual HANDLE shutdown_event() { return shutdown_event_; } + virtual base::WaitableEvent* shutdown_event() { return shutdown_event_; } private: void CreateResourceDispatcherHost(); @@ -242,7 +242,7 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe { bool using_new_frames_; // An event that notifies when we are shutting-down. - HANDLE shutdown_event_; + base::WaitableEvent* shutdown_event_; DISALLOW_EVIL_CONSTRUCTORS(BrowserProcessImpl); }; |