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 | |
Yusuke Sato
2016/10/12 05:58:13
// Next MinVersion: 1
shunhsingou
2016/12/22 04:04:34
Done.
| |
5 module arc.mojom; | |
6 | |
7 interface TraceHost { | |
Yusuke Sato
2016/10/12 05:58:13
remove line 7-8? I'm not sure defining an empty ho
shunhsingou
2016/12/22 04:04:34
Removed
| |
8 }; | |
9 | |
10 interface TraceInstance { | |
Yusuke Sato
2016/10/12 05:58:13
Mind adding comments to the interface and all meth
shunhsingou
2016/12/22 04:04:34
Done.
| |
11 StartTracing@0(array<string> categories) => (bool success); | |
Luis Héctor Chávez
2016/10/12 20:32:07
Is there any chance the TraceInstance will want to
shunhsingou
2016/12/22 04:04:34
Removed
| |
12 | |
13 StopTracing@1() => (bool success); | |
14 | |
15 QueryAvailableCategories@2() => (array<string> categories); | |
Yusuke Sato
2016/10/12 05:58:13
sort
shunhsingou
2016/12/22 04:04:34
Done.
| |
16 }; | |
OLD | NEW |