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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/sources/module.json
diff --git a/Source/devtools/front_end/sources/module.json b/Source/devtools/front_end/sources/module.json
index f8e7f2e9294be53645679839ec2d285c19d91cea..8480265ecba0ad5c981db0830327709bb09f1f5c 100644
--- a/Source/devtools/front_end/sources/module.json
+++ b/Source/devtools/front_end/sources/module.json
@@ -37,6 +37,87 @@
},
{
"type": "@WebInspector.ActionDelegate",
+ "actionId": "debugger.step-over",
+ "className": "WebInspector.SourcesPanel.StepOverActionDelegate",
+ "contextTypes": ["WebInspector.SourcesPanel"],
+ "bindings": [
+ {
+ "platform": "windows,linux",
+ "shortcut": "F10 Ctrl+'"
+ },
+ {
+ "platform": "mac",
+ "shortcut": "F10 Meta+'"
+ }
+ ]
+ },
+ {
+ "type": "@WebInspector.ActionDelegate",
+ "actionId": "debugger.step-into",
+ "className": "WebInspector.SourcesPanel.StepIntoActionDelegate",
+ "contextTypes": ["WebInspector.SourcesPanel"],
+ "bindings": [
+ {
+ "platform": "windows,linux",
+ "shortcut": "F11 Ctrl+;"
+ },
+ {
+ "platform": "mac",
+ "shortcut": "F11 Meta+;"
+ }
+ ]
+ },
+ {
+ "type": "@WebInspector.ActionDelegate",
+ "actionId": "debugger.step-into-async",
+ "experiment": "stepIntoAsync",
+ "className": "WebInspector.SourcesPanel.StepIntoAsyncActionDelegate",
+ "contextTypes": ["WebInspector.SourcesPanel"],
+ "bindings": [
+ {
+ "platform": "windows,linux",
+ "shortcut": "Alt+F11 Alt+Ctrl+;"
+ },
+ {
+ "platform": "mac",
+ "shortcut": "Alt+F11 Alt+Meta+;"
+ }
+ ]
+ },
+ {
+ "type": "@WebInspector.ActionDelegate",
+ "actionId": "debugger.step-out",
+ "className": "WebInspector.SourcesPanel.StepOutActionDelegate",
+ "contextTypes": ["WebInspector.SourcesPanel"],
+ "bindings": [
+ {
+ "platform": "windows,linux",
+ "shortcut": "Shift+F11 Shift+Ctrl+;"
+ },
+ {
+ "platform": "mac",
+ "shortcut": "Shift+F11 Shift+Meta+;"
+ }
+ ]
+ },
+ {
+ "type": "@WebInspector.ActionDelegate",
+ "actionId": "debugger.run-snippet",
+ "className": "WebInspector.SourcesPanel.RunSnippetActionDelegate",
+ "contextTypes": ["WebInspector.SourcesPanel"],
+ "bindings": [
+ {
+ "platform": "windows,linux",
+ "shortcut": "Ctrl+Enter"
+ },
+ {
+ "platform": "mac",
+ "shortcut": "Meta+Enter"
+ }
+ ]
+ },
+ {
+ "type": "@WebInspector.ActionDelegate",
"actionId": "sources.search.toggle",
"className": "WebInspector.AdvancedSearchView.ToggleDrawerViewActionDelegate",
"bindings": [

Powered by Google App Engine
This is Rietveld 408576698