| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module mojo.common.mojom; | |
| 6 | |
| 7 [Native] | |
| 8 struct FilePath; | |
| 9 | |
| 10 [Native] | |
| 11 struct ListValue; | |
| 12 | |
| 13 [Native] | |
| 14 struct DictionaryValue; | |
| 15 | |
| 16 [Native] | |
| 17 struct Time; | |
| 18 | |
| 19 struct TimeDelta { | |
| 20 int64 microseconds; | |
| 21 }; | |
| 22 | |
| 23 [Native] | |
| 24 struct TimeTicks; | |
| 25 | |
| 26 // Corresponds to |base::string16| in base/strings/string16.h | |
| 27 // Corresponds to |WTF::String| in | |
| 28 // third_party/WebKit/Source/wtf/text/WTFString.h. | |
| 29 struct String16 { | |
| 30 array<uint16> data; | |
| 31 }; | |
| 32 | |
| 33 // Corresponds to |base::UnguessableToken| in base/unguessable_token.h | |
| 34 struct UnguessableToken { | |
| 35 uint64 high; | |
| 36 uint64 low; | |
| 37 }; | |
| 38 | |
| 39 // Corresponds to |base::Version| in base/version.h | |
| 40 struct Version { | |
| 41 array<uint32> components; | |
| 42 }; | |
| 43 | |
| 44 // Corresponds to |base::File| in base/files/file.h | |
| 45 struct File { | |
| 46 handle fd; | |
| 47 }; | |
| OLD | NEW |