| Index: mojo/public/interfaces/bindings/tests/struct_with_traits.mojom
|
| diff --git a/mojo/public/interfaces/bindings/tests/struct_with_traits.mojom b/mojo/public/interfaces/bindings/tests/struct_with_traits.mojom
|
| index f4ae0cecc90967b74c7c00e7472539f9623f2604..9ca4bbe7235946b6da04cead6276f8900676f71c 100644
|
| --- a/mojo/public/interfaces/bindings/tests/struct_with_traits.mojom
|
| +++ b/mojo/public/interfaces/bindings/tests/struct_with_traits.mojom
|
| @@ -4,12 +4,19 @@
|
|
|
| module mojo.test;
|
|
|
| +struct NestedStructWithTraits {
|
| + int32 value;
|
| +};
|
| +
|
| struct StructWithTraits {
|
| bool f_bool;
|
| uint32 f_uint32;
|
| uint64 f_uint64;
|
| string f_string;
|
| string f_string2;
|
| + array<string> f_string_array;
|
| + NestedStructWithTraits f_struct;
|
| + array<NestedStructWithTraits> f_struct_array;
|
| };
|
|
|
| interface TraitsTestService {
|
|
|