Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/mobile_throttling/module.json

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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": "NetworkConditions.NetworkConditionsActionDelegate", 14 "className": "MobileThrottling.NetworkConditionsActionDelegate",
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": "NetworkConditions.NetworkConditionsActionDelegate", 22 "className": "MobileThrottling.NetworkConditionsActionDelegate",
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": "network-conditions",
29 "title": "Throttling", 29 "title": "Throttling",
30 "order": "35", 30 "order": "35",
31 "className": "NetworkConditions.NetworkConditionsSettingsTab", 31 "className": "MobileThrottling.NetworkConditionsSettingsTab",
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 "NetworkConditionsSelector.js",
45 "NetworkConditionsSettingsTab.js", 45 "NetworkConditionsSettingsTab.js",
46 "NetworkPriorities.js" 46 "CPUThrottlingManager.js"
47 ], 47 ],
48 "resources": [ 48 "resources": [
49 "networkConditionsSettingsTab.css" 49 "networkConditionsSettingsTab.css"
50 ] 50 ]
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698