| Index: mojo/system/waiter_list.h
|
| diff --git a/mojo/system/waiter_list.h b/mojo/system/waiter_list.h
|
| index 17745c5542d8983b94aa2a5877cf1acf5d92bc60..62d05d1d40f3bdfa974fb179fd1ce18978c18caf 100644
|
| --- a/mojo/system/waiter_list.h
|
| +++ b/mojo/system/waiter_list.h
|
| @@ -33,16 +33,16 @@ class MOJO_SYSTEM_IMPL_EXPORT WaiterList {
|
|
|
| void AwakeWaitersForStateChange(const WaitFlagsState& state);
|
| void CancelAllWaiters();
|
| - void AddWaiter(Waiter* waiter, MojoWaitFlags flags, uint32_t context);
|
| + void AddWaiter(Waiter* waiter, MojoHandleSignals signals, uint32_t context);
|
| void RemoveWaiter(Waiter* waiter);
|
|
|
| private:
|
| struct WaiterInfo {
|
| - WaiterInfo(Waiter* waiter, MojoWaitFlags flags, uint32_t context)
|
| - : waiter(waiter), flags(flags), context(context) {}
|
| + WaiterInfo(Waiter* waiter, MojoHandleSignals signals, uint32_t context)
|
| + : waiter(waiter), signals(signals), context(context) {}
|
|
|
| Waiter* waiter;
|
| - MojoWaitFlags flags;
|
| + MojoHandleSignals signals;
|
| uint32_t context;
|
| };
|
| typedef std::list<WaiterInfo> WaiterInfoList;
|
|
|