Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "extensions": [ | |
| 3 { | |
| 4 "type": "setting", | |
|
chenwilliam
2017/05/31 19:20:52
FYI, I had to manually move this b/c the extract_m
| |
| 5 "settingName": "customNetworkConditions", | |
| 6 "settingType": "array", | |
| 7 "defaultValue": [] | |
| 8 }, | |
| 9 { | |
| 10 "type": "@UI.ActionDelegate", | |
| 11 "actionId": "network-conditions.network-offline", | |
| 12 "category": "Network", | |
| 13 "title": "Go offline", | |
| 14 "className": "NetworkConditions.NetworkConditionsActionDelegate", | |
| 15 "tags": "device" | |
| 16 }, | |
| 17 { | |
| 18 "type": "@UI.ActionDelegate", | |
| 19 "actionId": "network-conditions.network-online", | |
| 20 "category": "Network", | |
| 21 "title": "Go online", | |
| 22 "className": "NetworkConditions.NetworkConditionsActionDelegate", | |
| 23 "tags": "device" | |
| 24 }, | |
| 25 { | |
| 26 "type": "view", | |
| 27 "location": "settings-view", | |
| 28 "id": "network-conditions", | |
| 29 "title": "Throttling", | |
| 30 "order": "35", | |
| 31 "className": "NetworkConditions.NetworkConditionsSettingsTab", | |
| 32 "settings": [ | |
| 33 "customNetworkConditions" | |
| 34 ] | |
| 35 } | |
| 36 ], | |
| 37 "dependencies": [ | |
| 38 "common", | |
| 39 "sdk", | |
| 40 "ui", | |
| 41 "protocol" | |
| 42 ], | |
| 43 "scripts": [ | |
| 44 "NetworkConditionsSelector.js", | |
| 45 "NetworkConditionsSettingsTab.js", | |
| 46 "NetworkPriorities.js" | |
| 47 ], | |
| 48 "resources": [ | |
| 49 "networkConditionsSettingsTab.css" | |
| 50 ] | |
| 51 } | |
| OLD | NEW |