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": 3, | 7 "order": 3, |
8 "className": "WebInspector.TimelinePanelFactory" | 8 "className": "WebInspector.TimelinePanelFactory" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 10 matching lines...) Expand all Loading... |
21 "className": "WebInspector.LoadTimelineHandler" | 21 "className": "WebInspector.LoadTimelineHandler" |
22 }, | 22 }, |
23 { | 23 { |
24 "type": "@WebInspector.ActionDelegate", | 24 "type": "@WebInspector.ActionDelegate", |
25 "actionId": "timeline.toggle-recording", | 25 "actionId": "timeline.toggle-recording", |
26 "iconClass": "record-toolbar-item", | 26 "iconClass": "record-toolbar-item", |
27 "contextTypes": ["WebInspector.TimelinePanel"], | 27 "contextTypes": ["WebInspector.TimelinePanel"], |
28 "className": "WebInspector.TimelinePanel.RecordActionDelegate", | 28 "className": "WebInspector.TimelinePanel.RecordActionDelegate", |
29 "bindings": [ | 29 "bindings": [ |
30 { | 30 { |
| 31 "platform": "windows,linux", |
31 "shortcut": "Ctrl+E" | 32 "shortcut": "Ctrl+E" |
| 33 }, |
| 34 { |
| 35 "platform": "mac", |
| 36 "shortcut": "Meta+E" |
32 } | 37 } |
33 ] | 38 ] |
34 } | 39 } |
35 ], | 40 ], |
36 "dependencies": [ | 41 "dependencies": [ |
37 "components", | 42 "components", |
38 "components_lazy", | 43 "components_lazy", |
39 "ui_lazy" | 44 "ui_lazy" |
40 ], | 45 ], |
41 "scripts": [ | 46 "scripts": [ |
(...skipping 18 matching lines...) Expand all Loading... |
60 "TransformController.js", | 65 "TransformController.js", |
61 "PaintProfilerView.js", | 66 "PaintProfilerView.js", |
62 "TimelinePanel.js" | 67 "TimelinePanel.js" |
63 ], | 68 ], |
64 "resources": [ | 69 "resources": [ |
65 "invalidationsTree.css", | 70 "invalidationsTree.css", |
66 "timelinePanel.css", | 71 "timelinePanel.css", |
67 "timelineStatusDialog.css" | 72 "timelineStatusDialog.css" |
68 ] | 73 ] |
69 } | 74 } |
OLD | NEW |