OLD | NEW |
1 { | 1 { |
2 "use_snake_file_names": true, | 2 "use_snake_file_names": true, |
3 "use_title_case_methods": true, | 3 "use_title_case_methods": true, |
4 | 4 |
5 "protocol": { | 5 "protocol": { |
6 "package": "content/browser/devtools/protocol", | 6 "package": "content/browser/devtools/protocol", |
7 "output": "protocol", | 7 "output": "protocol", |
8 "namespace": ["content", "protocol"], | 8 "namespace": ["content", "protocol"], |
9 "export_macro": "CONTENT_EXPORT", | 9 "export_macro": "CONTENT_EXPORT", |
10 "export_header": "content/common/content_export.h", | 10 "export_header": "content/common/content_export.h", |
11 "options": [ | 11 "options": [ |
12 { | 12 { |
13 "domain": "Tracing", | 13 "domain": "Tracing", |
14 "async": ["start", "end"] | 14 "async": ["start", "end", "getCategories", "requestMemoryDump"] |
| 15 }, |
| 16 { |
| 17 "domain": "IO", |
| 18 "async": ["read"] |
15 } | 19 } |
16 ] | 20 ] |
17 }, | 21 }, |
18 | 22 |
19 "lib": { | 23 "lib": { |
20 "package": "content/browser/devtools/protocol", | 24 "package": "content/browser/devtools/protocol", |
21 "output": "protocol", | 25 "output": "protocol", |
22 "string_header": "content/browser/devtools/protocol_string.h", | 26 "string_header": "content/browser/devtools/protocol_string.h", |
23 "export_macro": "CONTENT_EXPORT", | 27 "export_macro": "CONTENT_EXPORT", |
24 "export_header": "content/common/content_export.h" | 28 "export_header": "content/common/content_export.h" |
25 } | 29 } |
26 } | 30 } |
OLD | NEW |