| Index: mojo/public/platform/native/system_impl_private_thunks.c
|
| diff --git a/mojo/public/platform/native/system_impl_private_thunks.c b/mojo/public/platform/native/system_impl_private_thunks.c
|
| index 3129f5ea5b3915ca65094e6b496e61e0534ffc0f..466668592c65c602373a2ec4a7550b7e2c6903f1 100644
|
| --- a/mojo/public/platform/native/system_impl_private_thunks.c
|
| +++ b/mojo/public/platform/native/system_impl_private_thunks.c
|
| @@ -110,6 +110,25 @@ MojoResult MojoSystemImplCreateDataPipe(
|
| system, options, data_pipe_producer_handle, data_pipe_consumer_handle);
|
| }
|
|
|
| +MojoResult MojoSystemImplSetDataPipeProducerOptions(
|
| + MojoSystemImpl system,
|
| + MojoHandle data_pipe_producer_handle,
|
| + const struct MojoDataPipeProducerOptions* options) {
|
| + assert(g_system_impl_thunks.SetDataPipeProducerOptions);
|
| + return g_system_impl_thunks.SetDataPipeProducerOptions(
|
| + system, data_pipe_producer_handle, options);
|
| +}
|
| +
|
| +MojoResult MojoSystemImplGetDataPipeProducerOptions(
|
| + MojoSystemImpl system,
|
| + MojoHandle data_pipe_producer_handle,
|
| + struct MojoDataPipeProducerOptions* options,
|
| + uint32_t options_num_bytes) {
|
| + assert(g_system_impl_thunks.GetDataPipeProducerOptions);
|
| + return g_system_impl_thunks.GetDataPipeProducerOptions(
|
| + system, data_pipe_producer_handle, options, options_num_bytes);
|
| +}
|
| +
|
| MojoResult MojoSystemImplWriteData(MojoSystemImpl system,
|
| MojoHandle data_pipe_producer_handle,
|
| const void* elements,
|
|
|