Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: mojo/public/interfaces/bindings/tests/serialization_test_structs.mojom

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 [DartPackage="_mojo_for_test_only",
6 JavaPackage="org.chromium.mojo.bindings.test.mojom.mojo"]
7 module mojo.test;
8
9 struct Struct1 {
10 uint8 i;
11 };
12
13 struct Struct2 {
14 handle hdl;
15 };
16
17 struct Struct3 {
18 Struct1 struct_1;
19 };
20
21 struct Struct4 {
22 array<Struct1> data;
23 };
24
25 struct Struct5 {
26 array<Struct1, 2> pair;
27 };
28
29 struct Struct6 {
30 string str;
31 };
32
33 struct StructOfNullables {
34 handle? hdl;
35 Struct1? struct_1;
36 string? str;
37 };
OLDNEW
« no previous file with comments | « mojo/public/interfaces/bindings/tests/scoping.mojom ('k') | mojo/public/interfaces/bindings/tests/test_arrays.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698