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

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

Issue 1748993002: DevTools: Initial implementation of line-level CPU profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added a test. Created 4 years, 9 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.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "timeline", 5 "name": "timeline",
6 "title": "Timeline", 6 "title": "Timeline",
7 "order": 50, 7 "order": 50,
8 "className": "WebInspector.TimelinePanelFactory" 8 "className": "WebInspector.TimelinePanelFactory"
9 }, 9 },
10 { 10 {
11 "type": "setting", 11 "type": "setting",
12 "category": "Profiler", 12 "category": "Profiler",
13 "title": "Hide chrome frame in Layers view", 13 "title": "Hide chrome frame in Layers view",
14 "settingName": "frameViewerHideChromeWindow", 14 "settingName": "frameViewerHideChromeWindow",
15 "settingType": "boolean", 15 "settingType": "boolean",
16 "defaultValue": false 16 "defaultValue": false
17 }, 17 },
18 { 18 {
19 "type": "@WebInspector.QueryParamHandler", 19 "type": "@WebInspector.QueryParamHandler",
20 "name": "loadTimelineFromURL", 20 "name": "loadTimelineFromURL",
21 "className": "WebInspector.LoadTimelineHandler" 21 "className": "WebInspector.LoadTimelineHandler"
22 }, 22 },
23 { 23 {
24 "type": "@WebInspector.UISourceCodeFrame.LineDecorator",
25 "className": "WebInspector.TimelineUIUtils.PerformanceLineDecorator" ,
26 "decoratorType": "performance"
27 },
28 {
24 "type": "@WebInspector.ActionDelegate", 29 "type": "@WebInspector.ActionDelegate",
25 "actionId": "timeline.toggle-recording", 30 "actionId": "timeline.toggle-recording",
26 "iconClass": "record-toolbar-item", 31 "iconClass": "record-toolbar-item",
27 "contextTypes": ["WebInspector.TimelinePanel"], 32 "contextTypes": ["WebInspector.TimelinePanel"],
28 "className": "WebInspector.TimelinePanel.ActionDelegate", 33 "className": "WebInspector.TimelinePanel.ActionDelegate",
29 "bindings": [ 34 "bindings": [
30 { 35 {
31 "platform": "windows,linux", 36 "platform": "windows,linux",
32 "shortcut": "Ctrl+E" 37 "shortcut": "Ctrl+E"
33 }, 38 },
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "bindings": [ 94 "bindings": [
90 { 95 {
91 "shortcut": "]" 96 "shortcut": "]"
92 } 97 }
93 ] 98 ]
94 } 99 }
95 ], 100 ],
96 "dependencies": [ 101 "dependencies": [
97 "components", 102 "components",
98 "components_lazy", 103 "components_lazy",
104 "source_frame",
105 "sources",
99 "ui_lazy" 106 "ui_lazy"
100 ], 107 ],
101 "scripts": [ 108 "scripts": [
102 "LayerTreeModel.js", 109 "LayerTreeModel.js",
103 "CountersGraph.js", 110 "CountersGraph.js",
104 "LayerDetailsView.js", 111 "LayerDetailsView.js",
105 "LayerTreeOutline.js", 112 "LayerTreeOutline.js",
106 "LayerViewHost.js", 113 "LayerViewHost.js",
107 "Layers3DView.js", 114 "Layers3DView.js",
108 "MemoryCountersGraph.js", 115 "MemoryCountersGraph.js",
(...skipping 14 matching lines...) Expand all
123 "PaintProfilerView.js", 130 "PaintProfilerView.js",
124 "TimelinePanel.js" 131 "TimelinePanel.js"
125 ], 132 ],
126 "resources": [ 133 "resources": [
127 "invalidationsTree.css", 134 "invalidationsTree.css",
128 "timelineFlamechartPopover.css", 135 "timelineFlamechartPopover.css",
129 "timelinePanel.css", 136 "timelinePanel.css",
130 "timelineStatusDialog.css" 137 "timelineStatusDialog.css"
131 ] 138 ]
132 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698