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

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

Issue 311193002: DevTools: Implement debugger pause-resume through an action (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comment Created 6 years, 6 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.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 2, 7 "order": 2,
8 "className": "WebInspector.SourcesPanel" 8 "className": "WebInspector.SourcesPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.RemoteOb ject"], 12 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.RemoteOb ject"],
13 "className": "WebInspector.SourcesPanel.ContextMenuProvider" 13 "className": "WebInspector.SourcesPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "@WebInspector.ActionDelegate",
17 "actionId": "debugger.toggle-pause",
18 "className": "WebInspector.SourcesPanel.TogglePauseActionDelegate",
19 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"],
20 "bindings": [
21 {
22 "platform": "windows,linux",
23 "shortcut": "F8 Ctrl+\\"
24 },
25 {
26 "platform": "mac",
27 "shortcut": "F8 Meta+\\"
28 }
29 ]
30 },
31 {
16 "type": "@WebInspector.SearchScope", 32 "type": "@WebInspector.SearchScope",
17 "className": "WebInspector.SourcesSearchScope" 33 "className": "WebInspector.SourcesSearchScope"
18 }, 34 },
19 { 35 {
20 "type": "@WebInspector.DrawerEditor", 36 "type": "@WebInspector.DrawerEditor",
21 "className": "WebInspector.SourcesPanel.DrawerEditor" 37 "className": "WebInspector.SourcesPanel.DrawerEditor"
22 }, 38 },
23 { 39 {
24 "type": "@WebInspector.Revealer", 40 "type": "@WebInspector.Revealer",
25 "contextTypes": ["WebInspector.UILocation"], 41 "contextTypes": ["WebInspector.UILocation"],
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "type": "ui-setting", 164 "type": "ui-setting",
149 "experiment": "frameworksDebuggingSupport", 165 "experiment": "frameworksDebuggingSupport",
150 "parentSettingName": "skipStackFramesSwitch", 166 "parentSettingName": "skipStackFramesSwitch",
151 "settingType": "custom", 167 "settingType": "custom",
152 "className": "WebInspector.SourcesPanel.SkipStackFramePatternSetting Delegate" 168 "className": "WebInspector.SourcesPanel.SkipStackFramePatternSetting Delegate"
153 } 169 }
154 ], 170 ],
155 "dependencies": [ "source_frame" ], 171 "dependencies": [ "source_frame" ],
156 "scripts": [ "SourcesPanel.js" ] 172 "scripts": [ "SourcesPanel.js" ]
157 } 173 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | Source/devtools/front_end/ui/ShortcutRegistry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698