| Index: mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
|
| diff --git a/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom b/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
|
| index 26c93a2943f949174e3f2cdbf023b0205648d45c..e15e4568f826da86a346e15843ced096c39ad1b4 100644
|
| --- a/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
|
| +++ b/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
|
| @@ -12,14 +12,21 @@ struct TestWTFCodeGeneration {
|
| array<array<int32>> arrays;
|
| array<bool> bools;
|
| array<handle<message_pipe>> handles;
|
| + map<string, string?> str_map;
|
| + map<int32, array<int32>> array_map;
|
| + map<int32, handle<message_pipe>> handle_map;
|
| + array<map<string, string?>> str_maps;
|
| };
|
|
|
| union TestWTFCodeGeneration2 {
|
| string str;
|
| array<string> strs;
|
| + map<string, string?> str_map;
|
| };
|
|
|
| interface TestWTF {
|
| EchoString(string? str) => (string? str);
|
| EchoStringArray(array<string?>? arr) => (array<string?>? arr);
|
| + EchoStringMap(map<string, string?>? str_map)
|
| + => (map<string, string?>? str_map);
|
| };
|
|
|