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

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

Issue 2822593002: [Memory UMA] Return the extra_processes_dump map as part of the ResponseCallback (Closed)
Patch Set: Address Comments Created 3 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.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/process_id.mojom";
Ken Rockot(use gerrit already) 2017/04/19 21:19:37 nit: not used
fmeawad 2017/04/19 21:40:21 It was left there intentionally instead of adding
9 import "mojo/common/string16.mojom"; 10 import "mojo/common/string16.mojom";
10 import "mojo/common/text_direction.mojom"; 11 import "mojo/common/text_direction.mojom";
11 import "mojo/common/time.mojom"; 12 import "mojo/common/time.mojom";
12 import "mojo/common/unguessable_token.mojom"; 13 import "mojo/common/unguessable_token.mojom";
13 import "mojo/common/values.mojom"; 14 import "mojo/common/values.mojom";
14 15
15 interface TestFilePath { 16 interface TestFilePath {
16 BounceFilePath(mojo.common.mojom.FilePath in) 17 BounceFilePath(mojo.common.mojom.FilePath in)
17 => (mojo.common.mojom.FilePath out); 18 => (mojo.common.mojom.FilePath out);
18 }; 19 };
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 [Sync] 53 [Sync]
53 BounceFile(mojo.common.mojom.File? in) 54 BounceFile(mojo.common.mojom.File? in)
54 => (mojo.common.mojom.File? out); 55 => (mojo.common.mojom.File? out);
55 }; 56 };
56 57
57 interface TestTextDirection { 58 interface TestTextDirection {
58 [Sync] 59 [Sync]
59 BounceTextDirection(mojo.common.mojom.TextDirection in) 60 BounceTextDirection(mojo.common.mojom.TextDirection in)
60 => (mojo.common.mojom.TextDirection out); 61 => (mojo.common.mojom.TextDirection out);
61 }; 62 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698