Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: Source/devtools/front_end/timeline/module.json

Issue 1317973003: Devtools UI: Fix recording shortcut on Mac to use Cmd not Ctrl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/profiler/module.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/profiler/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698