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
|
+}; |