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

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

Issue 2608043002: DevTools: extract modules (with extensions) (Closed)
Patch Set: fix externs (PerfUI) Created 3 years, 11 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 {
4 "type": "@UI.ActionDelegate",
5 "actionId": "commandMenu.show",
6 "className": "UI.CommandMenu.ShowActionDelegate",
7 "bindings": [
8 {
9 "platform": "windows,linux",
10 "shortcut": "Ctrl+Shift+P"
11 },
12 {
13 "platform": "mac",
14 "shortcut": "Meta+Shift+P"
15 }
16 ]
17 }
18 ],
19 "dependencies": [ 3 "dependencies": [
20 "platform", 4 "platform",
21 "common", 5 "common",
22 "host", 6 "host",
23 "ui", 7 "ui",
24 "diff" 8 "diff"
25 ], 9 ],
26 "scripts": [ 10 "scripts": [
27 "ChartViewport.js", 11 "ChartViewport.js",
28 "DataGrid.js", 12 "DataGrid.js",
29 "ViewportDataGrid.js", 13 "ViewportDataGrid.js",
30 "SortableDataGrid.js", 14 "SortableDataGrid.js",
31 "ShowMoreDataGridNode.js", 15 "ShowMoreDataGridNode.js",
32 "FilteredListWidget.js",
33 "CommandMenu.js",
34 "FlameChart.js", 16 "FlameChart.js",
35 "OverviewGrid.js", 17 "OverviewGrid.js",
36 "PieChart.js", 18 "PieChart.js",
37 "TimelineGrid.js", 19 "TimelineGrid.js",
38 "TimelineOverviewPane.js" 20 "TimelineOverviewPane.js"
39 ], 21 ],
40 "resources": [ 22 "resources": [
41 "dataGrid.css", 23 "dataGrid.css",
42 "dialog.css", 24 "dialog.css",
43 "filteredListWidget.css",
44 "flameChart.css", 25 "flameChart.css",
45 "overviewGrid.css", 26 "overviewGrid.css",
46 "pieChart.css", 27 "pieChart.css",
47 "timelineGrid.css" 28 "timelineGrid.css"
48 ] 29 ]
49 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698