| Index: chrome/browser/browser_process_impl.h
|
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
|
| index 6f5110221c4f32dae429b701625c7c4a3db4947c..3b8732c9f72a6f709289a6f0733555b73cf4650d 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);
|
| };
|
|
|