| OLD | NEW |
| 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": "line-marker-decorator-performance", |
| 25 "className": "WebInspector.TimelineUIUtils.PerformanceLineMarkerDeco
rator" |
| 26 }, |
| 27 { |
| 24 "type": "@WebInspector.ActionDelegate", | 28 "type": "@WebInspector.ActionDelegate", |
| 25 "actionId": "timeline.toggle-recording", | 29 "actionId": "timeline.toggle-recording", |
| 26 "iconClass": "record-toolbar-item", | 30 "iconClass": "record-toolbar-item", |
| 27 "contextTypes": ["WebInspector.TimelinePanel"], | 31 "contextTypes": ["WebInspector.TimelinePanel"], |
| 28 "className": "WebInspector.TimelinePanel.ActionDelegate", | 32 "className": "WebInspector.TimelinePanel.ActionDelegate", |
| 29 "bindings": [ | 33 "bindings": [ |
| 30 { | 34 { |
| 31 "platform": "windows,linux", | 35 "platform": "windows,linux", |
| 32 "shortcut": "Ctrl+E" | 36 "shortcut": "Ctrl+E" |
| 33 }, | 37 }, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "PaintProfilerView.js", | 127 "PaintProfilerView.js", |
| 124 "TimelinePanel.js" | 128 "TimelinePanel.js" |
| 125 ], | 129 ], |
| 126 "resources": [ | 130 "resources": [ |
| 127 "invalidationsTree.css", | 131 "invalidationsTree.css", |
| 128 "timelineFlamechartPopover.css", | 132 "timelineFlamechartPopover.css", |
| 129 "timelinePanel.css", | 133 "timelinePanel.css", |
| 130 "timelineStatusDialog.css" | 134 "timelineStatusDialog.css" |
| 131 ] | 135 ] |
| 132 } | 136 } |
| OLD | NEW |