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

Unified Diff: mojo/public/platform/native/system_thunks.cc

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/public/platform/native/system_thunks.h ('k') | mojo/spy/spy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/platform/native/system_thunks.cc
diff --git a/mojo/public/platform/native/system_thunks.cc b/mojo/public/platform/native/system_thunks.cc
index ac034503913fe4912b5245ca6805e60e36278653..6fdc4f4530ff0af9c6205c6e02d4e92c0add2061 100644
--- a/mojo/public/platform/native/system_thunks.cc
+++ b/mojo/public/platform/native/system_thunks.cc
@@ -21,18 +21,18 @@ MojoResult MojoClose(MojoHandle handle) {
}
MojoResult MojoWait(MojoHandle handle,
- MojoWaitFlags flags,
+ MojoHandleSignals signals,
MojoDeadline deadline) {
assert(g_thunks.Wait);
- return g_thunks.Wait(handle, flags, deadline);
+ return g_thunks.Wait(handle, signals, deadline);
}
MojoResult MojoWaitMany(const MojoHandle* handles,
- const MojoWaitFlags* flags,
+ const MojoHandleSignals* signals,
uint32_t num_handles,
MojoDeadline deadline) {
assert(g_thunks.WaitMany);
- return g_thunks.WaitMany(handles, flags, num_handles, deadline);
+ return g_thunks.WaitMany(handles, signals, num_handles, deadline);
}
MojoResult MojoCreateMessagePipe(const MojoCreateMessagePipeOptions* options,
« no previous file with comments | « mojo/public/platform/native/system_thunks.h ('k') | mojo/spy/spy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698