| 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": "Timeline", | 7 "title": "Timeline", |
| 8 "order": 50, | 8 "order": 50, |
| 9 "className": "WebInspector.TimelinePanel" | 9 "className": "WebInspector.TimelinePanel" |
| 10 }, | 10 }, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 "type": "context-menu-item", | 30 "type": "context-menu-item", |
| 31 "location": "timelineMenu/open", | 31 "location": "timelineMenu/open", |
| 32 "actionId": "timeline.save-to-file" | 32 "actionId": "timeline.save-to-file" |
| 33 }, | 33 }, |
| 34 { | 34 { |
| 35 "type": "@WebInspector.ActionDelegate", | 35 "type": "@WebInspector.ActionDelegate", |
| 36 "actionId": "timeline.toggle-recording", | 36 "actionId": "timeline.toggle-recording", |
| 37 "iconClass": "record-toolbar-item", | 37 "iconClass": "record-toolbar-item", |
| 38 "toggledIconClass": "active-recording-toolbar-item", |
| 38 "contextTypes": ["WebInspector.TimelinePanel"], | 39 "contextTypes": ["WebInspector.TimelinePanel"], |
| 39 "className": "WebInspector.TimelinePanel.ActionDelegate", | 40 "className": "WebInspector.TimelinePanel.ActionDelegate", |
| 40 "options": [ | 41 "options": [ |
| 41 { "value": true, "title": "Record" }, | 42 { "value": true, "title": "Record" }, |
| 42 { "value": false, "title": "Stop" } | 43 { "value": false, "title": "Stop" } |
| 43 ], | 44 ], |
| 44 "bindings": [ | 45 "bindings": [ |
| 45 { | 46 { |
| 46 "platform": "windows,linux", | 47 "platform": "windows,linux", |
| 47 "shortcut": "Ctrl+E" | 48 "shortcut": "Ctrl+E" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "TimelinePanel.js" | 134 "TimelinePanel.js" |
| 134 ], | 135 ], |
| 135 "resources": [ | 136 "resources": [ |
| 136 "invalidationsTree.css", | 137 "invalidationsTree.css", |
| 137 "timelineFlamechartPopover.css", | 138 "timelineFlamechartPopover.css", |
| 138 "timelinePanel.css", | 139 "timelinePanel.css", |
| 139 "timelinePaintProfiler.css", | 140 "timelinePaintProfiler.css", |
| 140 "timelineStatusDialog.css" | 141 "timelineStatusDialog.css" |
| 141 ] | 142 ] |
| 142 } | 143 } |
| OLD | NEW |