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

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

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: 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
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698