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

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

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

Powered by Google App Engine
This is Rietveld 408576698