| 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
|
|
|