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

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

Issue 1273363002: Devtools UI: Show multiple shortcuts, show more shortcuts (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
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 {
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 },
23 {
24 "type": "@WebInspector.ActionDelegate",
25 "actionId": "timeline.toggle-recording",
26 "iconClass": "record-toolbar-item",
27 "contextTypes": ["WebInspector.TimelinePanel"],
28 "className": "WebInspector.TimelinePanel.RecordActionDelegate",
29 "bindings": [
30 {
31 "shortcut": "Ctrl+E"
32 }
33 ]
22 } 34 }
23 ], 35 ],
24 "dependencies": [ 36 "dependencies": [
25 "components", 37 "components",
26 "components_lazy", 38 "components_lazy",
27 "ui_lazy" 39 "ui_lazy"
28 ], 40 ],
29 "scripts": [ 41 "scripts": [
30 "CountersGraph.js", 42 "CountersGraph.js",
31 "LayerDetailsView.js", 43 "LayerDetailsView.js",
(...skipping 15 matching lines...) Expand all
47 "TimelinePaintProfilerView.js", 59 "TimelinePaintProfilerView.js",
48 "TransformController.js", 60 "TransformController.js",
49 "PaintProfilerView.js", 61 "PaintProfilerView.js",
50 "TimelinePanel.js" 62 "TimelinePanel.js"
51 ], 63 ],
52 "resources": [ 64 "resources": [
53 "invalidationsTree.css", 65 "invalidationsTree.css",
54 "timelinePanel.css" 66 "timelinePanel.css"
55 ] 67 ]
56 } 68 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | Source/devtools/front_end/ui/ActionRegistry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698