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", |
| 39 "toggleWithRedColor": true, |
38 "contextTypes": ["WebInspector.TimelinePanel"], | 40 "contextTypes": ["WebInspector.TimelinePanel"], |
39 "className": "WebInspector.TimelinePanel.ActionDelegate", | 41 "className": "WebInspector.TimelinePanel.ActionDelegate", |
40 "options": [ | 42 "options": [ |
41 { "value": true, "title": "Record" }, | 43 { "value": true, "title": "Record" }, |
42 { "value": false, "title": "Stop" } | 44 { "value": false, "title": "Stop" } |
43 ], | 45 ], |
44 "bindings": [ | 46 "bindings": [ |
45 { | 47 { |
46 "platform": "windows,linux", | 48 "platform": "windows,linux", |
47 "shortcut": "Ctrl+E" | 49 "shortcut": "Ctrl+E" |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "TimelinePanel.js" | 135 "TimelinePanel.js" |
134 ], | 136 ], |
135 "resources": [ | 137 "resources": [ |
136 "invalidationsTree.css", | 138 "invalidationsTree.css", |
137 "timelineFlamechartPopover.css", | 139 "timelineFlamechartPopover.css", |
138 "timelinePanel.css", | 140 "timelinePanel.css", |
139 "timelinePaintProfiler.css", | 141 "timelinePaintProfiler.css", |
140 "timelineStatusDialog.css" | 142 "timelineStatusDialog.css" |
141 ] | 143 ] |
142 } | 144 } |
OLD | NEW |