| 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": [
|
|
|