OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |