| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "setting", | 4 "type": "setting", |
| 5 "category": "Console", | 5 "category": "Console", |
| 6 "title": "Enable custom formatters", | 6 "title": "Enable custom formatters", |
| 7 "settingName": "customFormatters", | 7 "settingName": "customFormatters", |
| 8 "settingType": "boolean", | 8 "settingType": "boolean", |
| 9 "defaultValue": false, | 9 "defaultValue": false, |
| 10 "experiment": "customObjectFormatters" | 10 "experiment": "customObjectFormatters" |
| 11 }, | 11 }, |
| 12 { | 12 { |
| 13 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", | 13 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", |
| 14 "className": "WebInspector.DOMBreakpointsSidebarPane.MarkerDecorator
", | 14 "className": "WebInspector.DOMBreakpointsSidebarPane.MarkerDecorator
", |
| 15 "marker": "breakpoint-marker" | 15 "marker": "breakpoint-marker" |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "type": "setting", | 18 "type": "setting", |
| 19 "settingName": "networkConditionsCustomProfiles", | 19 "settingName": "networkConditionsCustomProfiles", |
| 20 "settingType": "array", | 20 "settingType": "array", |
| 21 "defaultValue": [] | 21 "defaultValue": [] |
| 22 }, | 22 }, |
| 23 { | 23 { |
| 24 "type": "settings-view", | 24 "type": "settings-view", |
| 25 "name": "network-conditions", | 25 "name": "network-conditions", |
| 26 "title": "Throttling", | 26 "title": "Throttling", |
| 27 "order": "35", | 27 "order": "35", |
| 28 "className": "WebInspector.NetworkConditionsSettingsTab" | 28 "className": "WebInspector.NetworkConditionsSettingsTab", |
| 29 "settings": [ |
| 30 "networkConditionsCustomProfiles" |
| 31 ] |
| 29 } | 32 } |
| 30 ], | 33 ], |
| 31 "dependencies": [ | 34 "dependencies": [ |
| 32 "bindings", | 35 "bindings", |
| 33 "platform", | 36 "platform", |
| 34 "ui" | 37 "ui" |
| 35 ], | 38 ], |
| 36 "scripts": [ | 39 "scripts": [ |
| 37 "BreakpointsSidebarPaneBase.js", | 40 "BreakpointsSidebarPaneBase.js", |
| 38 "CustomPreviewSection.js", | 41 "CustomPreviewSection.js", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 59 "breakpointsList.css", | 62 "breakpointsList.css", |
| 60 "customPreviewSection.css", | 63 "customPreviewSection.css", |
| 61 "eventListenersView.css", | 64 "eventListenersView.css", |
| 62 "domUtils.css", | 65 "domUtils.css", |
| 63 "inspectorViewTabbedPane.css", | 66 "inspectorViewTabbedPane.css", |
| 64 "networkConditionsSettingsTab.css", | 67 "networkConditionsSettingsTab.css", |
| 65 "objectPropertiesSection.css", | 68 "objectPropertiesSection.css", |
| 66 "objectValue.css" | 69 "objectValue.css" |
| 67 ] | 70 ] |
| 68 } | 71 } |
| OLD | NEW |