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

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

Issue 1785843002: [mojo] Implement pipe fusion API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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
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 b50970ef0d7774b28c60242edabf8a721766b05d..679043640fbbc22975813fdd3425c0186ee51b67 100644
--- a/mojo/public/platform/native/system_thunks.h
+++ b/mojo/public/platform/native/system_thunks.h
@@ -119,6 +119,7 @@ struct MojoSystemThunks {
MojoWatchCallback callback,
uintptr_t context);
MojoResult (*CancelWatch)(MojoHandle handle, uintptr_t context);
+ MojoResult (*FuseMessagePipes)(MojoHandle handle0, MojoHandle handle1);
};
#pragma pack(pop)
@@ -151,7 +152,8 @@ inline MojoSystemThunks MojoMakeSystemThunks() {
MojoRemoveHandle,
MojoGetReadyHandles,
MojoWatch,
- MojoCancelWatch};
+ MojoCancelWatch,
+ MojoFuseMessagePipes};
return system_thunks;
}
#endif
« no previous file with comments | « mojo/public/interfaces/bindings/tests/sample_interfaces.mojom ('k') | mojo/public/platform/native/system_thunks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698