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.common.mojom; | 5 module mojo.common.mojom; |
6 | 6 |
7 [Native] | 7 [Native] |
8 struct FilePath; | 8 struct FilePath; |
9 | 9 |
10 [Native] | 10 [Native] |
11 struct ListValue; | 11 struct ListValue; |
12 | 12 |
13 [Native] | 13 [Native] |
14 struct DictionaryValue; | 14 struct DictionaryValue; |
15 | 15 |
16 [Native] | 16 [Native] |
17 struct Nonce; | |
Fady Samuel
2016/09/13 17:45:00
Sorry just noticed. Could we please make this not
tguilbert
2016/09/13 20:20:19
Done.
I originally had StructTraits but encounter
Fady Samuel
2016/09/13 20:28:44
That's fine. If you want some of the StructTraits
tguilbert
2016/09/13 21:11:44
Ok, thanks for the info.
| |
18 | |
19 [Native] | |
17 struct Time; | 20 struct Time; |
18 | 21 |
19 [Native] | 22 [Native] |
20 struct TimeDelta; | 23 struct TimeDelta; |
21 | 24 |
22 [Native] | 25 [Native] |
23 struct TimeTicks; | 26 struct TimeTicks; |
24 | 27 |
25 [Native] | 28 [Native] |
26 struct String16; | 29 struct String16; |
27 | 30 |
28 // Corresponds to |base::Version| in base/version.h | 31 // Corresponds to |base::Version| in base/version.h |
29 struct Version { | 32 struct Version { |
30 array<uint32> components; | 33 array<uint32> components; |
31 }; | 34 }; |
OLD | NEW |