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

Side by Side Diff: components/arc/common/trace.mojom

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: Use struct instead of pair to save category data and fix lints Created 4 years, 2 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 2016 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
Yusuke Sato 2016/10/12 05:58:13 // Next MinVersion: 1
shunhsingou 2016/12/22 04:04:34 Done.
5 module arc.mojom;
6
7 interface TraceHost {
Yusuke Sato 2016/10/12 05:58:13 remove line 7-8? I'm not sure defining an empty ho
shunhsingou 2016/12/22 04:04:34 Removed
8 };
9
10 interface TraceInstance {
Yusuke Sato 2016/10/12 05:58:13 Mind adding comments to the interface and all meth
shunhsingou 2016/12/22 04:04:34 Done.
11 StartTracing@0(array<string> categories) => (bool success);
Luis Héctor Chávez 2016/10/12 20:32:07 Is there any chance the TraceInstance will want to
shunhsingou 2016/12/22 04:04:34 Removed
12
13 StopTracing@1() => (bool success);
14
15 QueryAvailableCategories@2() => (array<string> categories);
Yusuke Sato 2016/10/12 05:58:13 sort
shunhsingou 2016/12/22 04:04:34 Done.
16 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698