| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "sources", | 5 "name": "sources", |
| 6 "title": "Sources", | 6 "title": "Sources", |
| 7 "order": 2, | 7 "order": 2, |
| 8 "className": "WebInspector.SourcesPanelFactory" | 8 "className": "WebInspector.SourcesPanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "contextTypes": ["WebInspector.DebuggerModel.Location"], | 141 "contextTypes": ["WebInspector.DebuggerModel.Location"], |
| 142 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" | 142 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" |
| 143 }, | 143 }, |
| 144 { | 144 { |
| 145 "type": "@WebInspector.Revealer", | 145 "type": "@WebInspector.Revealer", |
| 146 "contextTypes": ["WebInspector.UISourceCode"], | 146 "contextTypes": ["WebInspector.UISourceCode"], |
| 147 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer" | 147 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer" |
| 148 }, | 148 }, |
| 149 { | 149 { |
| 150 "type": "@WebInspector.Revealer", | 150 "type": "@WebInspector.Revealer", |
| 151 "contextTypes": ["WebInspector.UISourceCodeMessages"], |
| 152 "className": "WebInspector.SourcesPanel.LineMessageRevealer" |
| 153 }, |
| 154 { |
| 155 "type": "@WebInspector.Revealer", |
| 156 "contextTypes": ["WebInspector.SearchResultsCollection"], |
| 157 "className": "WebInspector.AdvancedSearchView.SearchResultsRevealer" |
| 158 }, |
| 159 { |
| 160 "type": "@WebInspector.Revealer", |
| 151 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 161 "contextTypes": ["WebInspector.DebuggerPausedDetails"], |
| 152 "className": "WebInspector.SourcesPanel.DebuggerPausedDetailsReveale
r" | 162 "className": "WebInspector.SourcesPanel.DebuggerPausedDetailsReveale
r" |
| 153 }, | 163 }, |
| 154 { | 164 { |
| 155 "type": "@WebInspector.SourcesView.EditorAction", | 165 "type": "@WebInspector.SourcesView.EditorAction", |
| 156 "className": "WebInspector.InplaceFormatterEditorAction" | 166 "className": "WebInspector.InplaceFormatterEditorAction" |
| 157 }, | 167 }, |
| 158 { | 168 { |
| 159 "type": "@WebInspector.SourcesView.EditorAction", | 169 "type": "@WebInspector.SourcesView.EditorAction", |
| 160 "className": "WebInspector.ScriptFormatterEditorAction" | 170 "className": "WebInspector.ScriptFormatterEditorAction" |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "filteredItemSelectionDialog.css", | 343 "filteredItemSelectionDialog.css", |
| 334 "uiList.css", | 344 "uiList.css", |
| 335 "navigatorView.css", | 345 "navigatorView.css", |
| 336 "revisionHistory.css", | 346 "revisionHistory.css", |
| 337 "serviceWorkersSidebar.css", | 347 "serviceWorkersSidebar.css", |
| 338 "sourcesPanel.css", | 348 "sourcesPanel.css", |
| 339 "sourcesSearch.css", | 349 "sourcesSearch.css", |
| 340 "sourcesView.css" | 350 "sourcesView.css" |
| 341 ] | 351 ] |
| 342 } | 352 } |
| OLD | NEW |