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

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

Issue 2668413003: DevTools: extract NetworkConditionsSelector into its own module (Closed)
Patch Set: Created 3 years, 10 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": "view",
5 "location": "settings-view",
6 "id": "network-conditions",
7 "title": "Throttling",
8 "order": "35",
9 "className": "NetworkConditions.NetworkConditionsSettingsTab",
10 "settings": [
11 "customNetworkConditions"
12 ]
13 },
14 {
15 "type": "@UI.ActionDelegate",
16 "actionId": "components.network-offline",
17 "category": "Network",
18 "title": "Go offline",
19 "className": "NetworkConditions.NetworkConditionsActionDelegate",
20 "tags": "device"
21 },
22 {
23 "type": "@UI.ActionDelegate",
24 "actionId": "components.network-online",
25 "category": "Network",
26 "title": "Go online",
27 "className": "NetworkConditions.NetworkConditionsActionDelegate",
28 "tags": "device"
29 },
30 {
31 "type": "setting",
32 "settingName": "customNetworkConditions",
33 "settingType": "array",
34 "defaultValue": []
35 }
36 ],
37 "dependencies": [
38 "common",
39 "sdk",
40 "ui",
41 "protocol"
42 ],
43 "scripts": [
44 "NetworkConditionsSelector.js"
45 ],
46 "resources": [
47 "networkConditionsSettingsTab.css"
48 ]
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698