| Index: mojo/apps/js/test/js_to_cpp.mojom
|
| diff --git a/mojo/apps/js/test/js_to_cpp.mojom b/mojo/apps/js/test/js_to_cpp.mojom
|
| index 851d59127a531b6fc370bf7ece9f9ac54a3f1a17..1eba91e31e28c5fbf5c3efd9bafeb52396ef0e39 100644
|
| --- a/mojo/apps/js/test/js_to_cpp.mojom
|
| +++ b/mojo/apps/js/test/js_to_cpp.mojom
|
| @@ -17,15 +17,15 @@ struct EchoArgs {
|
| double double_val;
|
| double double_inf;
|
| double double_nan;
|
| - string name;
|
| - string[] string_array;
|
| - handle<message_pipe> message_handle;
|
| - handle<data_pipe_consumer> data_handle;
|
| + string? name;
|
| + string[]? string_array;
|
| + handle<message_pipe>? message_handle;
|
| + handle<data_pipe_consumer>? data_handle;
|
| };
|
|
|
| struct EchoArgsList {
|
| - EchoArgsList next;
|
| - EchoArgs item;
|
| + EchoArgsList? next;
|
| + EchoArgs? item;
|
| };
|
|
|
| // Note: For messages which control test flow, pick numbers that are unlikely
|
|
|