| OLD | NEW |
| 1 { | 1 { |
| 2 "dependencies": [ | 2 "dependencies": [ |
| 3 "common", | 3 "common", |
| 4 "host", | 4 "host", |
| 5 "platform" | 5 "platform" |
| 6 ], | 6 ], |
| 7 "extensions": [ | 7 "extensions": [ |
| 8 { | 8 { |
| 9 "type": "setting", | 9 "type": "setting", |
| 10 "settingName": "blockedURLs", | 10 "settingName": "blockedURLs", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "type": "setting", | 33 "type": "setting", |
| 34 "settingName": "pauseOnCaughtException", | 34 "settingName": "pauseOnCaughtException", |
| 35 "settingType": "boolean", | 35 "settingType": "boolean", |
| 36 "defaultValue": false | 36 "defaultValue": false |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 "type": "setting", | 39 "type": "setting", |
| 40 "settingName": "enableAsyncStackTraces", | 40 "settingName": "enableAsyncStackTraces", |
| 41 "settingType": "boolean", | 41 "settingType": "boolean", |
| 42 "defaultValue": false | 42 "defaultValue": false |
| 43 }, |
| 44 { |
| 45 "type": "@Runtime.Adapter", |
| 46 "contextTypes": ["WebInspector.DOMNode"], |
| 47 "className": "WebInspector.DOMNode.ToRemoteObject" |
| 43 } | 48 } |
| 44 ], | 49 ], |
| 45 "scripts": [ | 50 "scripts": [ |
| 46 "InspectorBackend.js", | 51 "InspectorBackend.js", |
| 47 "../InspectorBackendCommands.js", | 52 "../InspectorBackendCommands.js", |
| 48 "InspectorBackendHostedMode.js", | 53 "InspectorBackendHostedMode.js", |
| 49 "Target.js", | 54 "Target.js", |
| 50 "ApplicationCacheModel.js", | 55 "ApplicationCacheModel.js", |
| 51 "ConsoleModel.js", | 56 "ConsoleModel.js", |
| 52 "ContentProviders.js", | 57 "ContentProviders.js", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 75 "NetworkRequest.js", | 80 "NetworkRequest.js", |
| 76 "PaintProfiler.js", | 81 "PaintProfiler.js", |
| 77 "HeapProfilerModel.js", | 82 "HeapProfilerModel.js", |
| 78 "../SupportedCSSProperties.js" | 83 "../SupportedCSSProperties.js" |
| 79 ], | 84 ], |
| 80 "skip_compilation": [ | 85 "skip_compilation": [ |
| 81 "../InspectorBackendCommands.js", | 86 "../InspectorBackendCommands.js", |
| 82 "../SupportedCSSProperties.js" | 87 "../SupportedCSSProperties.js" |
| 83 ] | 88 ] |
| 84 } | 89 } |
| OLD | NEW |