| Index: base/synchronization/waitable_event.h
|
| diff --git a/base/synchronization/waitable_event.h b/base/synchronization/waitable_event.h
|
| index 01b5987280ed134835fd88fbfa34fb027eb2c405..9f357d1339bd5be7912b134fb222ad521bea6f76 100644
|
| --- a/base/synchronization/waitable_event.h
|
| +++ b/base/synchronization/waitable_event.h
|
| @@ -15,8 +15,8 @@
|
| #if defined(OS_POSIX)
|
| #include <list>
|
| #include <utility>
|
| -#include "base/lock.h"
|
| #include "base/ref_counted.h"
|
| +#include "base/synchronization/lock.h"
|
| #endif
|
|
|
| namespace base {
|
| @@ -149,7 +149,7 @@ class WaitableEvent {
|
|
|
| bool Dequeue(Waiter* waiter, void* tag);
|
|
|
| - Lock lock_;
|
| + base::Lock lock_;
|
| const bool manual_reset_;
|
| bool signaled_;
|
| std::list<Waiter*> waiters_;
|
|
|