Chromium Code Reviews| Index: Source/devtools/protocol.json |
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
| index efb1b5ad5f256922ea642233e8eccae62efe40ec..c261a707a6012f3d229ccddb7129e649fde4895a 100644 |
| --- a/Source/devtools/protocol.json |
| +++ b/Source/devtools/protocol.json |
| @@ -4126,6 +4126,14 @@ |
| "name": "end", |
| "description": "Stop trace events collection.", |
| "handlers": ["browser", "frontend"] |
| + }, |
| + { |
| + "name": "getCategories", |
| + "description": "Gets supported tracing categories.", |
| + "returns": [ |
| + { "name": "categories", "type": "array", "description": "A list of supported tracing categories." } |
|
caseq
2014/06/17 18:38:23
You probably want items: { "type": "string" } here
chrishenry
2014/06/17 18:53:41
Curious, why should this be string instead of an a
|
| + ], |
| + "handlers": ["browser", "frontend"] |
|
chrishenry
2014/06/17 17:23:50
I'm not sure about this handlers field. Do you kno
caseq
2014/06/17 18:38:23
This one is correct (this tells the code generator
chrishenry
2014/06/17 18:53:41
Thank you!
I'm curious why Tracing.start needs to
|
| } |
| ], |
| "events": [ |