| 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": "Inspector" |
| 14 }, |
| 15 { |
| 13 "domain": "IO", | 16 "domain": "IO", |
| 14 "async": ["read"] | 17 "async": ["read"] |
| 15 }, | 18 }, |
| 16 { | 19 { |
| 17 "domain": "Memory", | 20 "domain": "Memory", |
| 18 "include": ["setPressureNotificationsSuppressed", "simulatePress
ureNotification"] | 21 "include": ["setPressureNotificationsSuppressed", "simulatePress
ureNotification"] |
| 19 }, | 22 }, |
| 20 { | 23 { |
| 24 "domain": "Network", |
| 25 "include": ["enable", "disable", "clearBrowserCache", "clearBrow
serCookies", "getCookies", "deleteCookie", "setCookie", "canEmulateNetworkCondit
ions"], |
| 26 "include_types": ["CookieSameSite", "Cookie"], |
| 27 "include_events": [], |
| 28 "async": ["getCookies", "deleteCookie", "setCookie"] |
| 29 }, |
| 30 { |
| 31 "domain": "Schema" |
| 32 }, |
| 33 { |
| 21 "domain": "SystemInfo", | 34 "domain": "SystemInfo", |
| 22 "async": ["getInfo"] | 35 "async": ["getInfo"] |
| 23 }, | 36 }, |
| 24 { | 37 { |
| 25 "domain": "Tethering", | 38 "domain": "Tethering", |
| 26 "async": ["bind", "unbind"] | 39 "async": ["bind", "unbind"] |
| 27 }, | 40 }, |
| 28 { | 41 { |
| 29 "domain": "Tracing", | 42 "domain": "Tracing", |
| 30 "async": ["start", "end", "getCategories", "requestMemoryDump"] | 43 "async": ["start", "end", "getCategories", "requestMemoryDump"] |
| 31 } | 44 } |
| 32 ] | 45 ] |
| 33 }, | 46 }, |
| 34 | 47 |
| 35 "lib": { | 48 "lib": { |
| 36 "package": "content/browser/devtools/protocol", | 49 "package": "content/browser/devtools/protocol", |
| 37 "output": "protocol", | 50 "output": "protocol", |
| 38 "string_header": "content/browser/devtools/protocol_string.h", | 51 "string_header": "content/browser/devtools/protocol_string.h", |
| 39 "export_macro": "CONTENT_EXPORT", | 52 "export_macro": "CONTENT_EXPORT", |
| 40 "export_header": "content/common/content_export.h" | 53 "export_header": "content/common/content_export.h" |
| 41 } | 54 } |
| 42 } | 55 } |
| OLD | NEW |