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

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

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: Fix some nits 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 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..00cd212cf792c38682af257003fa2e7f8f36d86e
--- /dev/null
+++ b/components/arc/common/trace.mojom
@@ -0,0 +1,18 @@
+// 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;
+
+interface TraceInstance {
+ // Queries available tracing categories in the container.
+ QueryAvailableCategories@0() => (array<string> categories);
+
+ // Starts tracing in the container with the given categories.
+ StartTracing@1(array<string> categories) => (bool success);
+
+ // Stops tracing in the container.
+ StopTracing@2() => (string report);
Luis Héctor Chávez 2017/01/17 19:20:32 What happens if the user lets the collection proce
Earl Ou 2017/01/18 09:13:21 I added more comment here. Actually I tried to us
Luis Héctor Chávez 2017/01/18 17:31:32 Depending on the context in which an SELinux denia
+};

Powered by Google App Engine
This is Rietveld 408576698