Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "protocol": { | 2 "protocol": { |
| 3 "path": "browser_protocol.json", | 3 "path": "browser_protocol.json", |
| 4 "package": "core/inspector/protocol", | 4 "package": "core/inspector/protocol", |
| 5 "output": "inspector/protocol", | 5 "output": "inspector/protocol", |
| 6 "namespace": ["blink", "protocol"], | 6 "namespace": ["blink", "protocol"], |
| 7 "export_macro": "CORE_EXPORT", | 7 "export_macro": "CORE_EXPORT", |
| 8 "export_header": "core/CoreExport.h", | 8 "export_header": "core/CoreExport.h", |
| 9 "options": [ | 9 "options": [ |
| 10 { | 10 { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 89 }, | 89 }, |
| 90 { | 90 { |
| 91 "domain": "Network", | 91 "domain": "Network", |
| 92 "exclude": ["clearBrowserCache", "clearBrowserCookies", "getCook ies", "getAllCookies", "deleteCookie", "setCookie", "canEmulateNetworkConditions "], | 92 "exclude": ["clearBrowserCache", "clearBrowserCookies", "getCook ies", "getAllCookies", "deleteCookie", "setCookie", "canEmulateNetworkConditions "], |
| 93 "async": ["getResponseBody"] | 93 "async": ["getResponseBody"] |
| 94 }, | 94 }, |
| 95 { | 95 { |
| 96 "domain": "Target", | 96 "domain": "Target", |
| 97 "include": ["setAutoAttach", "sendMessageToTarget"], | 97 "include": ["setAutoAttach", "sendMessageToTarget"], |
| 98 "include_events": ["attachedToTarget", "detachedFromTarget", "re ceivedMessageFromTarget"] | 98 "include_events": ["attachedToTarget", "detachedFromTarget", "re ceivedMessageFromTarget"] |
| 99 }, | |
| 100 { | |
| 101 "domain": "UI", | |
|
dgozman
2017/03/20 22:00:48
Remove this - we don't need UI in core/inspector.
jzfeng
2017/03/21 09:13:32
Done.
| |
| 102 "include": [] | |
| 99 } | 103 } |
| 100 ] | 104 ] |
| 101 }, | 105 }, |
| 102 | 106 |
| 103 "imported": { | 107 "imported": { |
| 104 "header": "<v8-inspector-protocol.h>", | 108 "header": "<v8-inspector-protocol.h>", |
| 105 "to_imported_string": "toV8InspectorStringView(%s)", | 109 "to_imported_string": "toV8InspectorStringView(%s)", |
| 106 "from_imported_string": "toCoreString(%s)", | 110 "from_imported_string": "toCoreString(%s)", |
| 107 "namespace": ["v8_inspector", "protocol"], | 111 "namespace": ["v8_inspector", "protocol"], |
| 108 "options": [ | 112 "options": [ |
| 109 { | 113 { |
| 110 "domain": "Runtime", | 114 "domain": "Runtime", |
| 111 "imported": ["RemoteObject", "StackTrace"] | 115 "imported": ["RemoteObject", "StackTrace"] |
| 112 }, | 116 }, |
| 113 { | 117 { |
| 114 "domain": "Debugger", | 118 "domain": "Debugger", |
| 115 "imported": ["SearchMatch"] | 119 "imported": ["SearchMatch"] |
| 116 } | 120 } |
| 117 ] | 121 ] |
| 118 }, | 122 }, |
| 119 | 123 |
| 120 "lib": { | 124 "lib": { |
| 121 "package": "core/inspector/protocol", | 125 "package": "core/inspector/protocol", |
| 122 "output": "inspector/protocol", | 126 "output": "inspector/protocol", |
| 123 "string_header": "core/inspector/V8InspectorString.h", | 127 "string_header": "core/inspector/V8InspectorString.h", |
| 124 "export_macro": "CORE_EXPORT", | 128 "export_macro": "CORE_EXPORT", |
| 125 "export_header": "core/CoreExport.h" | 129 "export_header": "core/CoreExport.h" |
| 126 } | 130 } |
| 127 } | 131 } |
| OLD | NEW |