| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "setting", | 4 "type": "setting", |
| 5 "settingName": "customNetworkConditions", | 5 "settingName": "customNetworkConditions", |
| 6 "settingType": "array", | 6 "settingType": "array", |
| 7 "defaultValue": [] | 7 "defaultValue": [] |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "type": "@UI.ActionDelegate", | 10 "type": "@UI.ActionDelegate", |
| 11 "actionId": "network-conditions.network-offline", | 11 "actionId": "network-conditions.network-offline", |
| 12 "category": "Network", | 12 "category": "Network", |
| 13 "title": "Go offline", | 13 "title": "Go offline", |
| 14 "className": "MobileThrottling.NetworkConditionsActionDelegate", | 14 "className": "MobileThrottling.ThrottlingManager.ActionDelegate", |
| 15 "tags": "device" | 15 "tags": "device" |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "type": "@UI.ActionDelegate", | 18 "type": "@UI.ActionDelegate", |
| 19 "actionId": "network-conditions.network-online", | 19 "actionId": "network-conditions.network-online", |
| 20 "category": "Network", | 20 "category": "Network", |
| 21 "title": "Go online", | 21 "title": "Go online", |
| 22 "className": "MobileThrottling.NetworkConditionsActionDelegate", | 22 "className": "MobileThrottling.ThrottlingManager.ActionDelegate", |
| 23 "tags": "device" | 23 "tags": "device" |
| 24 }, | 24 }, |
| 25 { | 25 { |
| 26 "type": "view", | 26 "type": "view", |
| 27 "location": "settings-view", | 27 "location": "settings-view", |
| 28 "id": "network-conditions", | 28 "id": "throttling-conditions", |
| 29 "title": "Throttling", | 29 "title": "Throttling", |
| 30 "order": 35, | 30 "order": 35, |
| 31 "className": "MobileThrottling.NetworkConditionsSettingsTab", | 31 "className": "MobileThrottling.ThrottlingSettingsTab", |
| 32 "settings": [ | 32 "settings": [ |
| 33 "customNetworkConditions" | 33 "customNetworkConditions" |
| 34 ] | 34 ] |
| 35 } | 35 } |
| 36 ], | 36 ], |
| 37 "dependencies": [ | 37 "dependencies": [ |
| 38 "common", | 38 "common", |
| 39 "sdk", | 39 "sdk", |
| 40 "ui", | 40 "ui", |
| 41 "protocol" | 41 "protocol" |
| 42 ], | 42 ], |
| 43 "scripts": [ | 43 "scripts": [ |
| 44 "NetworkConditionsSelector.js", | 44 "ThrottlingPresets.js", |
| 45 "NetworkConditionsSettingsTab.js", | 45 "MobileThrottlingSelector.js", |
| 46 "CPUThrottlingManager.js" | 46 "NetworkThrottlingSelector.js", |
| 47 "ThrottlingSettingsTab.js", |
| 48 "ThrottlingManager.js" |
| 47 ], | 49 ], |
| 48 "resources": [ | 50 "resources": [ |
| 49 "networkConditionsSettingsTab.css" | 51 "throttlingSettingsTab.css" |
| 50 ] | 52 ] |
| 51 } | 53 } |
| OLD | NEW |