| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@Components.DOMPresentationUtils.MarkerDecorator", | |
| 5 "factoryName": "Components.DOMPresentationUtils.GenericDecorator", | |
| 6 "marker": "breakpoint-marker", | |
| 7 "title": "DOM Breakpoint", | |
| 8 "color": "rgb(105, 140, 254)" | |
| 9 }, | |
| 10 { | |
| 11 "type": "setting", | 4 "type": "setting", |
| 12 "settingName": "customNetworkConditions", | 5 "settingName": "customNetworkConditions", |
| 13 "settingType": "array", | 6 "settingType": "array", |
| 14 "defaultValue": [] | 7 "defaultValue": [] |
| 15 }, | 8 }, |
| 16 { | 9 { |
| 17 "type": "@UI.ActionDelegate", | 10 "type": "@UI.ActionDelegate", |
| 18 "actionId": "components.network-offline", | 11 "actionId": "network-conditions.network-offline", |
| 19 "category": "Network", | 12 "category": "Network", |
| 20 "title": "Go offline", | 13 "title": "Go offline", |
| 21 "className": "Components.NetworkConditionsActionDelegate", | 14 "className": "NetworkConditions.NetworkConditionsActionDelegate", |
| 22 "tags": "device" | 15 "tags": "device" |
| 23 }, | 16 }, |
| 24 { | 17 { |
| 25 "type": "@UI.ActionDelegate", | 18 "type": "@UI.ActionDelegate", |
| 26 "actionId": "components.network-online", | 19 "actionId": "network-conditions.network-online", |
| 27 "category": "Network", | 20 "category": "Network", |
| 28 "title": "Go online", | 21 "title": "Go online", |
| 29 "className": "Components.NetworkConditionsActionDelegate", | 22 "className": "NetworkConditions.NetworkConditionsActionDelegate", |
| 30 "tags": "device" | 23 "tags": "device" |
| 31 }, | 24 }, |
| 32 { | 25 { |
| 33 "type": "view", | 26 "type": "view", |
| 34 "location": "settings-view", | 27 "location": "settings-view", |
| 35 "id": "network-conditions", | 28 "id": "network-conditions", |
| 36 "title": "Throttling", | 29 "title": "Throttling", |
| 37 "order": "35", | 30 "order": "35", |
| 38 "className": "Components.NetworkConditionsSettingsTab", | 31 "className": "NetworkConditions.NetworkConditionsSettingsTab", |
| 39 "settings": [ | 32 "settings": [ |
| 40 "customNetworkConditions" | 33 "customNetworkConditions" |
| 41 ] | 34 ] |
| 42 } | 35 } |
| 43 ], | 36 ], |
| 44 "dependencies": [ | 37 "dependencies": [ |
| 45 "bindings", | 38 "common", |
| 46 "platform", | 39 "sdk", |
| 47 "ui" | 40 "ui", |
| 41 "protocol" |
| 48 ], | 42 ], |
| 49 "scripts": [ | 43 "scripts": [ |
| 50 "BreakpointsSidebarPaneBase.js", | |
| 51 "CustomPreviewComponent.js", | |
| 52 "CPUThrottlingManager.js", | |
| 53 "DataSaverInfobar.js", | |
| 54 "DOMBreakpointsSidebarPane.js", | |
| 55 "DOMPresentationUtils.js", | |
| 56 "DockController.js", | |
| 57 "JavaScriptAutocomplete.js", | |
| 58 "Linkifier.js", | |
| 59 "NetworkConditionsSelector.js", | 44 "NetworkConditionsSelector.js", |
| 60 "ObjectPopoverHelper.js", | 45 "NetworkConditionsSettingsTab.js", |
| 61 "ObjectPropertiesSection.js", | 46 "NetworkPriorities.js" |
| 62 "RemoteObjectPreviewFormatter.js", | |
| 63 "EventListenersUtils.js", | |
| 64 "EventListenersView.js", | |
| 65 "Reload.js" | |
| 66 ], | 47 ], |
| 67 "resources": [ | 48 "resources": [ |
| 68 "breakpointsList.css", | 49 "networkConditionsSettingsTab.css" |
| 69 "customPreviewComponent.css", | |
| 70 "eventListenersView.css", | |
| 71 "domUtils.css", | |
| 72 "networkConditionsSettingsTab.css", | |
| 73 "objectPropertiesSection.css", | |
| 74 "objectValue.css" | |
| 75 ] | 50 ] |
| 76 } | 51 } |
| OLD | NEW |