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

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

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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 module mojo.test;
6
7 union PodUnion {
8 int8 f_int8;
9 int8 f_int8_other;
10 uint8 f_uint8;
11 int16 f_int16;
12 uint16 f_uint16;
13 int32 f_int32;
14 uint32 f_uint32;
15 int64 f_int64;
16 uint64 f_uint64;
17 float f_float;
18 double f_double;
19 bool f_bool;
20 string f_string;
21 };
22
23 struct SomeStruct {
24 string f_string;
25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698