Chromium Code Reviews| 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 StructWithTraitsElement { | |
| 8 int32 value; | |
| 9 }; | |
| 10 | |
| 7 struct StructWithTraits { | 11 struct StructWithTraits { |
| 8 bool f_bool; | 12 bool f_bool; |
| 9 uint32 f_uint32; | 13 uint32 f_uint32; |
| 10 uint64 f_uint64; | 14 uint64 f_uint64; |
| 11 string f_string; | 15 string f_string; |
| 12 string f_string2; | 16 string f_string2; |
| 17 array<string> f_array_string; | |
|
Ken Rockot(use gerrit already)
2016/05/13 14:35:51
nit: I think it would be clearer for readers if th
yzshen1
2016/05/13 16:01:17
Thanks!
I changed to use NestedStructWithTraits,
| |
| 18 StructWithTraitsElement f_element; | |
| 19 array<StructWithTraitsElement> f_array_element; | |
| 13 }; | 20 }; |
| 14 | 21 |
| 15 interface TraitsTestService { | 22 interface TraitsTestService { |
| 16 PassStructWithTraits(StructWithTraits s) => (StructWithTraits passed); | 23 PassStructWithTraits(StructWithTraits s) => (StructWithTraits passed); |
| 17 }; | 24 }; |
| OLD | NEW |