| Index: mojo/public/platform/native/system_impl_private_thunks.h
|
| diff --git a/mojo/public/platform/native/system_impl_private_thunks.h b/mojo/public/platform/native/system_impl_private_thunks.h
|
| index 09d0ce06883cd9b9c9bf3557ed2ea948979b9f22..2f8b24d1df44f4ce61eaabc0d2445bc54d9afe67 100644
|
| --- a/mojo/public/platform/native/system_impl_private_thunks.h
|
| +++ b/mojo/public/platform/native/system_impl_private_thunks.h
|
| @@ -69,6 +69,15 @@ struct MojoSystemImplThunksPrivate {
|
| const struct MojoCreateDataPipeOptions* options,
|
| MojoHandle* data_pipe_producer_handle,
|
| MojoHandle* data_pipe_consumer_handle);
|
| + MojoResult (*SetDataPipeProducerOptions)(
|
| + MojoSystemImpl system,
|
| + MojoHandle data_pipe_producer_handle,
|
| + const struct MojoDataPipeProducerOptions* options);
|
| + MojoResult (*GetDataPipeProducerOptions)(
|
| + MojoSystemImpl system,
|
| + MojoHandle data_pipe_producer_handle,
|
| + struct MojoDataPipeProducerOptions* options,
|
| + uint32_t options_num_bytes);
|
| MojoResult (*WriteData)(MojoSystemImpl system,
|
| MojoHandle data_pipe_producer_handle,
|
| const void* elements,
|
| @@ -150,6 +159,8 @@ inline MojoSystemImplThunksPrivate MojoMakeSystemImplThunksPrivate() {
|
| MojoSystemImplWriteMessage,
|
| MojoSystemImplReadMessage,
|
| MojoSystemImplCreateDataPipe,
|
| + MojoSystemImplSetDataPipeProducerOptions,
|
| + MojoSystemImplGetDataPipeProducerOptions,
|
| MojoSystemImplWriteData,
|
| MojoSystemImplBeginWriteData,
|
| MojoSystemImplEndWriteData,
|
|
|