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

Unified Diff: components/arc/common/trace.mojom

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: Fix according to comments Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: components/arc/common/trace.mojom
diff --git a/components/arc/common/trace.mojom b/components/arc/common/trace.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..403f20dcd6b618a66e6bde0ad9703118a4e3c5e2
--- /dev/null
+++ b/components/arc/common/trace.mojom
@@ -0,0 +1,19 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Next MinVersion: 1
+
+module arc.mojom;
+
Yusuke Sato 2017/01/04 23:55:48 remove this line
Earl Ou 2017/01/16 14:05:46 Done.
+
+interface TraceInstance {
+ // 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.
+ QueryAvailableCategories@2() => (array<string> categories);
+
+ // Start tracing in the container with the given categories.
+ StartTracing@0(array<string> categories) => (bool success);
+
+ // Stop tracing in the container.
+ StopTracing@1() => (bool success);
+};

Powered by Google App Engine
This is Rietveld 408576698