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

Side by Side Diff: mojo/common/test_common_custom_types.mojom

Issue 2626093004: EnumTraits for base::i18n::TextDirection. (Closed)
Patch Set: Addressed feedback. Created 3 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
« no previous file with comments | « mojo/common/common_custom_types_unittest.cc ('k') | mojo/common/text_direction.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.common.test; 5 module mojo.common.test;
6 6
7 import "mojo/common/file.mojom"; 7 import "mojo/common/file.mojom";
8 import "mojo/common/file_path.mojom"; 8 import "mojo/common/file_path.mojom";
9 import "mojo/common/string16.mojom"; 9 import "mojo/common/string16.mojom";
10 import "mojo/common/text_direction.mojom";
10 import "mojo/common/time.mojom"; 11 import "mojo/common/time.mojom";
11 import "mojo/common/unguessable_token.mojom"; 12 import "mojo/common/unguessable_token.mojom";
12 import "mojo/common/values.mojom"; 13 import "mojo/common/values.mojom";
13 14
14 interface TestFilePath { 15 interface TestFilePath {
15 BounceFilePath(mojo.common.mojom.FilePath in) 16 BounceFilePath(mojo.common.mojom.FilePath in)
16 => (mojo.common.mojom.FilePath out); 17 => (mojo.common.mojom.FilePath out);
17 }; 18 };
18 19
19 interface TestUnguessableToken { 20 interface TestUnguessableToken {
(...skipping 25 matching lines...) Expand all
45 [Sync] 46 [Sync]
46 BounceString16(mojo.common.mojom.String16 in) 47 BounceString16(mojo.common.mojom.String16 in)
47 => (mojo.common.mojom.String16 out); 48 => (mojo.common.mojom.String16 out);
48 }; 49 };
49 50
50 interface TestFile { 51 interface TestFile {
51 [Sync] 52 [Sync]
52 BounceFile(mojo.common.mojom.File? in) 53 BounceFile(mojo.common.mojom.File? in)
53 => (mojo.common.mojom.File? out); 54 => (mojo.common.mojom.File? out);
54 }; 55 };
56
57 interface TestTextDirection {
58 [Sync]
59 BounceTextDirection(mojo.common.mojom.TextDirection in)
60 => (mojo.common.mojom.TextDirection out);
61 };
OLDNEW
« no previous file with comments | « mojo/common/common_custom_types_unittest.cc ('k') | mojo/common/text_direction.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698