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

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

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: Fix according to comments 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
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
5 // Next MinVersion: 1
6
7 module arc.mojom;
8
Yusuke Sato 2017/01/04 23:55:48 remove this line
Earl Ou 2017/01/16 14:05:46 Done.
9
10 interface TraceInstance {
11 // Query available tracing categories in the container.
Yusuke Sato 2017/01/04 23:55:48 Queries (L11), Starts (L14), and Stops (L17)
Earl Ou 2017/01/16 14:05:45 Done.
12 QueryAvailableCategories@2() => (array<string> categories);
13
14 // Start tracing in the container with the given categories.
15 StartTracing@0(array<string> categories) => (bool success);
16
17 // Stop tracing in the container.
18 StopTracing@1() => (bool success);
19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698