Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Unified Diff: mojo/system/waiter_list.h

Issue 345463003: Mojo: MojoWaitFlags -> MojoHandleSignals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/system/wait_flags_state.h ('k') | mojo/system/waiter_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « mojo/system/wait_flags_state.h ('k') | mojo/system/waiter_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698