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

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

Issue 2938503002: DevTools: unify Network & CPU throttling (Closed)
Patch Set: rebaseline Created 3 years, 5 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": "setting",
11 "settingName": "cpuThrottlingRate",
dgozman 2017/06/28 22:33:09 This setting should either be in SDK, or be remove
chenwilliam 2017/06/29 20:34:02 OK, removed this and switched to using the manager
12 "settingType": "number",
13 "storageType": "session",
14 "defaultValue": 1
15 },
16 {
10 "type": "@UI.ActionDelegate", 17 "type": "@UI.ActionDelegate",
11 "actionId": "network-conditions.network-offline", 18 "actionId": "network-conditions.network-offline",
12 "category": "Network", 19 "category": "Network",
13 "title": "Go offline", 20 "title": "Go offline",
14 "className": "MobileThrottling.NetworkConditionsActionDelegate", 21 "className": "MobileThrottling.NetworkConditionsActionDelegate",
15 "tags": "device" 22 "tags": "device"
16 }, 23 },
17 { 24 {
18 "type": "@UI.ActionDelegate", 25 "type": "@UI.ActionDelegate",
19 "actionId": "network-conditions.network-online", 26 "actionId": "network-conditions.network-online",
20 "category": "Network", 27 "category": "Network",
21 "title": "Go online", 28 "title": "Go online",
22 "className": "MobileThrottling.NetworkConditionsActionDelegate", 29 "className": "MobileThrottling.NetworkConditionsActionDelegate",
23 "tags": "device" 30 "tags": "device"
24 }, 31 },
25 { 32 {
26 "type": "view", 33 "type": "view",
27 "location": "settings-view", 34 "location": "settings-view",
28 "id": "network-conditions", 35 "id": "throttling-conditions",
29 "title": "Throttling", 36 "title": "Throttling",
30 "order": 35, 37 "order": 35,
31 "className": "MobileThrottling.NetworkConditionsSettingsTab", 38 "className": "MobileThrottling.ThrottlingSettingsTab",
32 "settings": [ 39 "settings": [
33 "customNetworkConditions" 40 "customNetworkConditions"
34 ] 41 ]
35 } 42 }
36 ], 43 ],
37 "dependencies": [ 44 "dependencies": [
38 "common", 45 "common",
39 "sdk", 46 "sdk",
40 "ui", 47 "ui",
41 "protocol" 48 "protocol"
42 ], 49 ],
43 "scripts": [ 50 "scripts": [
44 "NetworkConditionsSelector.js", 51 "ThrottlingSelector.js",
45 "NetworkConditionsSettingsTab.js", 52 "ThrottlingSettingsTab.js",
46 "CPUThrottlingManager.js" 53 "CPUThrottlingManager.js"
47 ], 54 ],
48 "resources": [ 55 "resources": [
49 "networkConditionsSettingsTab.css" 56 "throttlingSettingsTab.css"
50 ] 57 ]
51 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698