OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 module mojo.test; | 5 module mojo.test; |
6 | 6 |
7 struct NestedStructWithTraits { | 7 struct NestedStructWithTraits { |
8 int32 value; | 8 int32 value; |
9 }; | 9 }; |
10 | 10 |
11 struct StructWithTraits { | 11 struct StructWithTraits { |
12 bool f_bool; | 12 bool f_bool; |
13 uint32 f_uint32; | 13 uint32 f_uint32; |
14 uint64 f_uint64; | 14 uint64 f_uint64; |
15 string f_string; | 15 string f_string; |
16 string f_string2; | 16 string f_string2; |
17 array<string> f_string_array; | 17 array<string> f_string_array; |
18 NestedStructWithTraits f_struct; | 18 NestedStructWithTraits f_struct; |
19 array<NestedStructWithTraits> f_struct_array; | 19 array<NestedStructWithTraits> f_struct_array; |
20 }; | 20 }; |
21 | 21 |
| 22 struct StructWithTraitsContainer { |
| 23 StructWithTraits f_struct; |
| 24 }; |
| 25 |
22 struct PassByValueStructWithTraits { | 26 struct PassByValueStructWithTraits { |
23 handle f_handle; | 27 handle f_handle; |
24 }; | 28 }; |
25 | 29 |
26 interface TraitsTestService { | 30 interface TraitsTestService { |
27 EchoStructWithTraits(StructWithTraits s) => (StructWithTraits passed); | 31 EchoStructWithTraits(StructWithTraits s) => (StructWithTraits passed); |
28 | 32 |
29 EchoPassByValueStructWithTraits(PassByValueStructWithTraits s) => | 33 EchoPassByValueStructWithTraits(PassByValueStructWithTraits s) => |
30 (PassByValueStructWithTraits passed); | 34 (PassByValueStructWithTraits passed); |
31 }; | 35 }; |
OLD | NEW |