| 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.SearchScope", | 16 "type": "@WebInspector.SearchScope", |
| 17 "className": "WebInspector.SourcesSearchScope" | 17 "className": "WebInspector.SourcesSearchScope" |
| 18 }, | 18 }, |
| 19 { | 19 { |
| 20 "type": "@WebInspector.DrawerEditor", | 20 "type": "@WebInspector.DrawerEditor", |
| 21 "className": "WebInspector.SourcesPanel.DrawerEditor" | 21 "className": "WebInspector.SourcesPanel.DrawerEditor" |
| 22 }, | 22 }, |
| 23 { | 23 { |
| 24 "type": "@WebInspector.Revealer", | 24 "type": "@WebInspector.Revealer", |
| 25 "contextTypes": ["WebInspector.UILocation"], | 25 "contextTypes": ["WebInspector.UILocation"], |
| 26 "className": "WebInspector.SourcesPanel.UILocationRevealer" | 26 "className": "WebInspector.SourcesPanel.UILocationRevealer" |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 "type": "@WebInspector.Revealer", |
| 30 "contextTypes": ["WebInspector.UISourceCode"], |
| 31 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer" |
| 32 }, |
| 33 { |
| 29 "type": "@WebInspector.SourcesView.EditorAction", | 34 "type": "@WebInspector.SourcesView.EditorAction", |
| 30 "className": "WebInspector.InplaceFormatterEditorAction" | 35 "className": "WebInspector.InplaceFormatterEditorAction" |
| 31 }, | 36 }, |
| 32 { | 37 { |
| 33 "type": "@WebInspector.SourcesView.EditorAction", | 38 "type": "@WebInspector.SourcesView.EditorAction", |
| 34 "className": "WebInspector.ScriptFormatterEditorAction" | 39 "className": "WebInspector.ScriptFormatterEditorAction" |
| 35 }, | 40 }, |
| 36 { | 41 { |
| 37 "type": "navigator-view", | 42 "type": "navigator-view", |
| 38 "name": "sources", | 43 "name": "sources", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "type": "ui-setting", | 148 "type": "ui-setting", |
| 144 "experiment": "frameworksDebuggingSupport", | 149 "experiment": "frameworksDebuggingSupport", |
| 145 "parentSettingName": "skipStackFramesSwitch", | 150 "parentSettingName": "skipStackFramesSwitch", |
| 146 "settingType": "custom", | 151 "settingType": "custom", |
| 147 "className": "WebInspector.SourcesPanel.SkipStackFramePatternSetting
Delegate" | 152 "className": "WebInspector.SourcesPanel.SkipStackFramePatternSetting
Delegate" |
| 148 } | 153 } |
| 149 ], | 154 ], |
| 150 "dependencies": [ "source_frame" ], | 155 "dependencies": [ "source_frame" ], |
| 151 "scripts": [ "SourcesPanel.js" ] | 156 "scripts": [ "SourcesPanel.js" ] |
| 152 } | 157 } |
| OLD | NEW |