Chromium Code Reviews| 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 | |
|
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 }; | |
| OLD | NEW |