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

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

Issue 1867483002: Mojo: Align string sizes when serializing a native type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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.test; 5 module mojo.test;
6 6
7 struct StructWithTraits { 7 struct StructWithTraits {
8 bool f_bool; 8 bool f_bool;
9 uint32 f_uint32; 9 uint32 f_uint32;
10 uint64 f_uint64; 10 uint64 f_uint64;
11 string f_string; 11 string f_string;
12 string f_string2;
12 }; 13 };
13 14
14 interface TraitsTestService { 15 interface TraitsTestService {
15 PassStructWithTraits(StructWithTraits s) => (StructWithTraits passed); 16 PassStructWithTraits(StructWithTraits s) => (StructWithTraits passed);
16 }; 17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698