OLD | NEW |
(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 |
| 9 |
| 10 interface TraceInstance { |
| 11 // Query available tracing categories in the container. |
| 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 }; |
OLD | NEW |