| 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 fb7550443427187d3d20aaa625f4112e4f8e0c28..062c3ecf13820942e0f7a02541624ae1a8f49155 100644
|
| --- a/mojo/public/platform/native/system_impl_private_thunks.c
|
| +++ b/mojo/public/platform/native/system_impl_private_thunks.c
|
| @@ -48,6 +48,16 @@ MojoResult MojoSystemImplGetRights(MojoSystemImpl system,
|
| return g_system_impl_thunks.GetRights(system, handle, rights);
|
| }
|
|
|
| +MojoResult MojoSystemImplReplaceHandleWithReducedRights(
|
| + MojoSystemImpl system,
|
| + MojoHandle handle,
|
| + MojoHandleRights rights_to_remove,
|
| + MojoHandle* replacement_handle) {
|
| + assert(g_system_impl_thunks.ReplaceHandleWithReducedRights);
|
| + return g_system_impl_thunks.ReplaceHandleWithReducedRights(
|
| + system, handle, rights_to_remove, replacement_handle);
|
| +}
|
| +
|
| MojoResult MojoSystemImplDuplicateHandleWithReducedRights(
|
| MojoSystemImpl system,
|
| MojoHandle handle,
|
|
|