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

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

Issue 830593003: Update mojo sdk to rev 9fbbc4f0fef1187312316c0ed992342474e139f1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cherry-pick mojo 9d3b8dd17f12d20035a14737fdc38dd926890ff8 Created 5 years, 11 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/mojo_application.gni ('k') | mojo/public/platform/native/system_thunks.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.h
diff --git a/mojo/public/platform/native/system_thunks.h b/mojo/public/platform/native/system_thunks.h
index 1796d35fc3ee569462a1bb4f8d7c21509c9bc258..bb6ca96429ccd71594d65f2718ad27f9c617a95f 100644
--- a/mojo/public/platform/native/system_thunks.h
+++ b/mojo/public/platform/native/system_thunks.h
@@ -40,21 +40,14 @@ struct MojoSystemThunks {
MojoResult (*Close)(MojoHandle handle);
MojoResult (*Wait)(MojoHandle handle,
MojoHandleSignals signals,
- MojoDeadline deadline);
+ MojoDeadline deadline,
+ struct MojoHandleSignalsState* signals_state);
MojoResult (*WaitMany)(const MojoHandle* handles,
const MojoHandleSignals* signals,
uint32_t num_handles,
- MojoDeadline deadline);
- MojoResult (*NewWait)(MojoHandle handle,
- MojoHandleSignals signals,
- MojoDeadline deadline,
- struct MojoHandleSignalsState* signals_state);
- MojoResult (*NewWaitMany)(const MojoHandle* handles,
- const MojoHandleSignals* signals,
- uint32_t num_handles,
- MojoDeadline deadline,
- uint32_t* result_index,
- struct MojoHandleSignalsState* signals_states);
+ MojoDeadline deadline,
+ uint32_t* result_index,
+ struct MojoHandleSignalsState* signals_states);
MojoResult (*CreateMessagePipe)(
const struct MojoCreateMessagePipeOptions* options,
MojoHandle* message_pipe_handle0,
@@ -121,8 +114,6 @@ inline MojoSystemThunks MojoMakeSystemThunks() {
MojoClose,
MojoWait,
MojoWaitMany,
- MojoNewWait,
- MojoNewWaitMany,
MojoCreateMessagePipe,
MojoWriteMessage,
MojoReadMessage,
« no previous file with comments | « mojo/public/mojo_application.gni ('k') | mojo/public/platform/native/system_thunks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698