| Index: mojo/public/platform/native/system_thunks.cc
|
| diff --git a/mojo/public/platform/native/system_thunks.cc b/mojo/public/platform/native/system_thunks.cc
|
| index 86447c1cdebf2fe3c9fe19d9a5c62860edf19e80..a56266c3e3524f0c4e4568e84b8a4e461fa85977 100644
|
| --- a/mojo/public/platform/native/system_thunks.cc
|
| +++ b/mojo/public/platform/native/system_thunks.cc
|
| @@ -277,6 +277,11 @@ MojoResult MojoUnwrapPlatformSharedBufferHandle(
|
| num_bytes, flags);
|
| }
|
|
|
| +MojoResult MojoNotifyBadMessage(MojoMessageHandle message) {
|
| + assert(g_thunks.NotifyBadMessage);
|
| + return g_thunks.NotifyBadMessage(message);
|
| +}
|
| +
|
| extern "C" THUNK_EXPORT size_t MojoSetSystemThunks(
|
| const MojoSystemThunks* system_thunks) {
|
| if (system_thunks->size >= sizeof(g_thunks))
|
|
|