| Index: mojo/bindings/js/core.cc
|
| diff --git a/mojo/bindings/js/core.cc b/mojo/bindings/js/core.cc
|
| index 976a5346140c0253e005fc4dc7a4c5e8fcdf190f..0d75ce5a8c633c8da52faa46e19e6eee11cb6607 100644
|
| --- a/mojo/bindings/js/core.cc
|
| +++ b/mojo/bindings/js/core.cc
|
| @@ -46,7 +46,8 @@ MojoResult WaitMany(
|
| gin::Dictionary CreateMessagePipe(const gin::Arguments& args) {
|
| MojoHandle handle0 = MOJO_HANDLE_INVALID;
|
| MojoHandle handle1 = MOJO_HANDLE_INVALID;
|
| - MojoResult result = MojoCreateMessagePipe(&handle0, &handle1);
|
| + // TODO(vtl): Add support for the options struct.
|
| + MojoResult result = MojoCreateMessagePipe(NULL, &handle0, &handle1);
|
| CHECK(result == MOJO_RESULT_OK);
|
|
|
| gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
|
|
|