| 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": "IO", | 13 "domain": "IO", |
| 14 "async": ["read"] | 14 "async": ["read"] |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "domain": "Memory", |
| 18 "include": ["setPressureNotificationsSuppressed", "simulatePress
ureNotification"] |
| 19 }, |
| 20 { |
| 21 "domain": "SystemInfo", |
| 22 "async": ["getInfo"] |
| 23 }, |
| 24 { |
| 25 "domain": "Tethering", |
| 26 "async": ["bind", "unbind"] |
| 27 }, |
| 28 { |
| 17 "domain": "Tracing", | 29 "domain": "Tracing", |
| 18 "async": ["start", "end", "getCategories", "requestMemoryDump"] | 30 "async": ["start", "end", "getCategories", "requestMemoryDump"] |
| 19 }, | |
| 20 { | |
| 21 "domain": "IO", | |
| 22 "async": ["read"] | |
| 23 } | 31 } |
| 24 ] | 32 ] |
| 25 }, | 33 }, |
| 26 | 34 |
| 27 "lib": { | 35 "lib": { |
| 28 "package": "content/browser/devtools/protocol", | 36 "package": "content/browser/devtools/protocol", |
| 29 "output": "protocol", | 37 "output": "protocol", |
| 30 "string_header": "content/browser/devtools/protocol_string.h", | 38 "string_header": "content/browser/devtools/protocol_string.h", |
| 31 "export_macro": "CONTENT_EXPORT", | 39 "export_macro": "CONTENT_EXPORT", |
| 32 "export_header": "content/common/content_export.h" | 40 "export_header": "content/common/content_export.h" |
| 33 } | 41 } |
| 34 } | 42 } |
| OLD | NEW |