| 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 // Corresponds to |base::NonceToken| in base/nonce_token.h |
| 17 struct NonceToken { |
| 18 uint64 high; |
| 19 uint64 low; |
| 20 }; |
| 21 |
| 16 [Native] | 22 [Native] |
| 17 struct Time; | 23 struct Time; |
| 18 | 24 |
| 19 struct TimeDelta { | 25 struct TimeDelta { |
| 20 int64 microseconds; | 26 int64 microseconds; |
| 21 }; | 27 }; |
| 22 | 28 |
| 23 [Native] | 29 [Native] |
| 24 struct TimeTicks; | 30 struct TimeTicks; |
| 25 | 31 |
| 26 [Native] | 32 [Native] |
| 27 struct String16; | 33 struct String16; |
| 28 | 34 |
| 29 // Corresponds to |base::Version| in base/version.h | 35 // Corresponds to |base::Version| in base/version.h |
| 30 struct Version { | 36 struct Version { |
| 31 array<uint32> components; | 37 array<uint32> components; |
| 32 }; | 38 }; |
| OLD | NEW |