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

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

Issue 982863002: Devtools: [SourcesPanel] register shortcuts via ActionRegistry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 2, 7 "order": 2,
8 "className": "WebInspector.SourcesPanelFactory" 8 "className": "WebInspector.SourcesPanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 19 matching lines...) Expand all
30 "shortcut": "F8 Ctrl+\\" 30 "shortcut": "F8 Ctrl+\\"
31 }, 31 },
32 { 32 {
33 "platform": "mac", 33 "platform": "mac",
34 "shortcut": "F8 Meta+\\" 34 "shortcut": "F8 Meta+\\"
35 } 35 }
36 ] 36 ]
37 }, 37 },
38 { 38 {
39 "type": "@WebInspector.ActionDelegate", 39 "type": "@WebInspector.ActionDelegate",
40 "actionId": "debugger.step-over",
41 "className": "WebInspector.SourcesPanel.StepOverActionDelegate",
42 "contextTypes": ["WebInspector.SourcesPanel"],
43 "bindings": [
44 {
45 "platform": "windows,linux",
46 "shortcut": "F10 Ctrl+'"
47 },
48 {
49 "platform": "mac",
50 "shortcut": "F10 Meta+'"
51 }
52 ]
53 },
54 {
55 "type": "@WebInspector.ActionDelegate",
56 "actionId": "debugger.step-into",
57 "className": "WebInspector.SourcesPanel.StepIntoActionDelegate",
58 "contextTypes": ["WebInspector.SourcesPanel"],
59 "bindings": [
60 {
61 "platform": "windows,linux",
62 "shortcut": "F11 Ctrl+;"
63 },
64 {
65 "platform": "mac",
66 "shortcut": "F11 Meta+;"
67 }
68 ]
69 },
70 {
71 "type": "@WebInspector.ActionDelegate",
72 "actionId": "debugger.step-into-async",
73 "experiment": "stepIntoAsync",
74 "className": "WebInspector.SourcesPanel.StepIntoAsyncActionDelegate" ,
75 "contextTypes": ["WebInspector.SourcesPanel"],
76 "bindings": [
77 {
78 "platform": "windows,linux",
79 "shortcut": "Alt+F11 Alt+Ctrl+;"
80 },
81 {
82 "platform": "mac",
83 "shortcut": "Alt+F11 Alt+Meta+;"
84 }
85 ]
86 },
87 {
88 "type": "@WebInspector.ActionDelegate",
89 "actionId": "debugger.step-out",
90 "className": "WebInspector.SourcesPanel.StepOutActionDelegate",
91 "contextTypes": ["WebInspector.SourcesPanel"],
92 "bindings": [
93 {
94 "platform": "windows,linux",
95 "shortcut": "Shift+F11 Shift+Ctrl+;"
96 },
97 {
98 "platform": "mac",
99 "shortcut": "Shift+F11 Shift+Meta+;"
100 }
101 ]
102 },
103 {
104 "type": "@WebInspector.ActionDelegate",
105 "actionId": "debugger.run-snippet",
106 "className": "WebInspector.SourcesPanel.RunSnippetActionDelegate",
107 "contextTypes": ["WebInspector.SourcesPanel"],
108 "bindings": [
109 {
110 "platform": "windows,linux",
111 "shortcut": "Ctrl+Enter"
112 },
113 {
114 "platform": "mac",
115 "shortcut": "Meta+Enter"
116 }
117 ]
118 },
119 {
120 "type": "@WebInspector.ActionDelegate",
40 "actionId": "sources.search.toggle", 121 "actionId": "sources.search.toggle",
41 "className": "WebInspector.AdvancedSearchView.ToggleDrawerViewAction Delegate", 122 "className": "WebInspector.AdvancedSearchView.ToggleDrawerViewAction Delegate",
42 "bindings": [ 123 "bindings": [
43 { 124 {
44 "platform": "mac", 125 "platform": "mac",
45 "shortcut": "Meta+Alt+F" 126 "shortcut": "Meta+Alt+F"
46 }, 127 },
47 { 128 {
48 "platform": "windows,linux", 129 "platform": "windows,linux",
49 "shortcut": "Ctrl+Shift+F" 130 "shortcut": "Ctrl+Shift+F"
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "stylesheets": [ 307 "stylesheets": [
227 "filteredItemSelectionDialog.css", 308 "filteredItemSelectionDialog.css",
228 "uiList.css", 309 "uiList.css",
229 "navigatorView.css", 310 "navigatorView.css",
230 "revisionHistory.css", 311 "revisionHistory.css",
231 "sourcesPanel.css", 312 "sourcesPanel.css",
232 "sourcesSearch.css", 313 "sourcesSearch.css",
233 "sourcesView.css" 314 "sourcesView.css"
234 ] 315 ]
235 } 316 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698