| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "timeline", | 6 "id": "timeline", |
| 7 "title": "Performance", | 7 "title": "Performance", |
| 8 "order": 50, | 8 "order": 50, |
| 9 "className": "Timeline.TimelinePanel" | 9 "className": "Timeline.TimelinePanel" |
| 10 }, | 10 }, |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 { | 105 { |
| 106 "type": "@UI.ActionDelegate", | 106 "type": "@UI.ActionDelegate", |
| 107 "actionId": "timeline.jump-to-next-frame", | 107 "actionId": "timeline.jump-to-next-frame", |
| 108 "contextTypes": ["Timeline.TimelinePanel"], | 108 "contextTypes": ["Timeline.TimelinePanel"], |
| 109 "className": "Timeline.TimelinePanel.ActionDelegate", | 109 "className": "Timeline.TimelinePanel.ActionDelegate", |
| 110 "bindings": [ | 110 "bindings": [ |
| 111 { | 111 { |
| 112 "shortcut": "]" | 112 "shortcut": "]" |
| 113 } | 113 } |
| 114 ] | 114 ] |
| 115 }, |
| 116 { |
| 117 "type": "view", |
| 118 "location": "timeline-landing-page", |
| 119 "id": "Load", |
| 120 "title": "Page Load", |
| 121 "order": "0", |
| 122 "className": "Timeline.LoadPerspective" |
| 123 }, |
| 124 { |
| 125 "type": "view", |
| 126 "location": "timeline-landing-page", |
| 127 "id": "Responsiveness", |
| 128 "title": "Responsiveness", |
| 129 "order": "1", |
| 130 "className": "Timeline.ResponsivenessPerspective" |
| 131 }, |
| 132 { |
| 133 "type": "view", |
| 134 "location": "timeline-landing-page", |
| 135 "id": "JavaScript", |
| 136 "title": "JavaScript", |
| 137 "order": "2", |
| 138 "className": "Timeline.JavaScriptPerspective" |
| 139 }, |
| 140 { |
| 141 "type": "view", |
| 142 "location": "timeline-landing-page", |
| 143 "id": "Custom", |
| 144 "title": "Custom", |
| 145 "order": "3", |
| 146 "className": "Timeline.CustomPerspective" |
| 115 } | 147 } |
| 116 ], | 148 ], |
| 117 "dependencies": [ | 149 "dependencies": [ |
| 118 "components", | 150 "components", |
| 119 "components_lazy", | 151 "components_lazy", |
| 120 "layer_viewer", | 152 "layer_viewer", |
| 121 "timeline_model", | 153 "timeline_model", |
| 122 "ui_lazy" | 154 "ui_lazy" |
| 123 ], | 155 ], |
| 124 "scripts": [ | 156 "scripts": [ |
| 125 "CountersGraph.js", | 157 "CountersGraph.js", |
| 126 "MemoryCountersGraph.js", | 158 "MemoryCountersGraph.js", |
| 127 "TimelineController.js", | 159 "TimelineController.js", |
| 128 "TimelineLoader.js", | 160 "TimelineLoader.js", |
| 129 "TimelineEventOverview.js", | 161 "TimelineEventOverview.js", |
| 130 "TimelineFlameChartView.js", | 162 "TimelineFlameChartView.js", |
| 131 "TimelineFlameChart.js", | 163 "TimelineFlameChart.js", |
| 132 "TimelineNetworkFlameChart.js", | 164 "TimelineNetworkFlameChart.js", |
| 133 "TimelineTreeView.js", | 165 "TimelineTreeView.js", |
| 166 "TimelineLandingPage.js", |
| 134 "TimelineUIUtils.js", | 167 "TimelineUIUtils.js", |
| 135 "TimelineLayersView.js", | 168 "TimelineLayersView.js", |
| 136 "TimelinePaintProfilerView.js", | 169 "TimelinePaintProfilerView.js", |
| 137 "TimelinePanel.js" | 170 "TimelinePanel.js" |
| 138 ], | 171 ], |
| 139 "resources": [ | 172 "resources": [ |
| 140 "invalidationsTree.css", | 173 "invalidationsTree.css", |
| 141 "timelineFlamechartPopover.css", | 174 "timelineFlamechartPopover.css", |
| 175 "timelineLandingPage.css", |
| 142 "timelinePanel.css", | 176 "timelinePanel.css", |
| 143 "timelinePaintProfiler.css", | 177 "timelinePaintProfiler.css", |
| 144 "timelineStatusDialog.css" | 178 "timelineStatusDialog.css" |
| 145 ] | 179 ] |
| 146 } | 180 } |
| OLD | NEW |