| OLD | NEW |
| 1 { | 1 { |
| 2 "dependencies": [ | 2 "dependencies": [ |
| 3 "common", | 3 "common", |
| 4 "host", | 4 "host", |
| 5 "platform" | 5 "platform", |
| 6 "protocol" |
| 6 ], | 7 ], |
| 7 "extensions": [ | 8 "extensions": [ |
| 8 { | 9 { |
| 9 "type": "setting", | 10 "type": "setting", |
| 10 "settingName": "blockedURLs", | 11 "settingName": "blockedURLs", |
| 11 "settingType": "array", | 12 "settingType": "array", |
| 12 "defaultValue": [] | 13 "defaultValue": [] |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "type": "setting", | 16 "type": "setting", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ] | 65 ] |
| 65 }, | 66 }, |
| 66 { | 67 { |
| 67 "type": "setting", | 68 "type": "setting", |
| 68 "settingName": "showMetricsRulers", | 69 "settingName": "showMetricsRulers", |
| 69 "settingType": "boolean", | 70 "settingType": "boolean", |
| 70 "defaultValue": false | 71 "defaultValue": false |
| 71 } | 72 } |
| 72 ], | 73 ], |
| 73 "scripts": [ | 74 "scripts": [ |
| 74 "InspectorBackend.js", | |
| 75 "../InspectorBackendCommands.js", | |
| 76 "InspectorBackendHostedMode.js", | |
| 77 "Target.js", | 75 "Target.js", |
| 78 "TargetManager.js", | 76 "TargetManager.js", |
| 79 "ApplicationCacheModel.js", | 77 "ApplicationCacheModel.js", |
| 80 "Connections.js", | 78 "Connections.js", |
| 81 "ConsoleModel.js", | 79 "ConsoleModel.js", |
| 82 "ContentProviders.js", | 80 "ContentProviders.js", |
| 83 "CookieParser.js", | 81 "CookieParser.js", |
| 84 "ProfileTreeModel.js", | 82 "ProfileTreeModel.js", |
| 85 "ServerTiming.js", | 83 "ServerTiming.js", |
| 86 "CPUProfileDataModel.js", | 84 "CPUProfileDataModel.js", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 112 "ResourceTreeModel.js", | 110 "ResourceTreeModel.js", |
| 113 "SecurityOriginManager.js", | 111 "SecurityOriginManager.js", |
| 114 "SourceMap.js", | 112 "SourceMap.js", |
| 115 "NetworkManager.js", | 113 "NetworkManager.js", |
| 116 "NetworkRequest.js", | 114 "NetworkRequest.js", |
| 117 "PaintProfiler.js", | 115 "PaintProfiler.js", |
| 118 "HeapProfilerModel.js", | 116 "HeapProfilerModel.js", |
| 119 "../SupportedCSSProperties.js" | 117 "../SupportedCSSProperties.js" |
| 120 ], | 118 ], |
| 121 "skip_compilation": [ | 119 "skip_compilation": [ |
| 122 "../InspectorBackendCommands.js", | |
| 123 "../SupportedCSSProperties.js" | 120 "../SupportedCSSProperties.js" |
| 124 ] | 121 ] |
| 125 } | 122 } |
| OLD | NEW |