| 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 { |
| 11 "type": "drawer-view", | 11 "type": "drawer-view", |
| 12 "name": "sources.search", | 12 "name": "sources.search", |
| 13 "title": "Search", | 13 "title": "Search", |
| 14 "order": "1", | 14 "order": "1", |
| 15 "className": "WebInspector.AdvancedSearchView" | 15 "className": "WebInspector.AdvancedSearchView" |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "type": "@WebInspector.ContextMenu.Provider", | 18 "type": "@WebInspector.ContextMenu.Provider", |
| 19 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.RemoteOb
ject", "WebInspector.NetworkRequest"], | 19 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati
on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest"], |
| 20 "className": "WebInspector.SourcesPanel.ContextMenuProvider" | 20 "className": "WebInspector.SourcesPanel.ContextMenuProvider" |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 "type": "@WebInspector.ActionDelegate", | 23 "type": "@WebInspector.ActionDelegate", |
| 24 "actionId": "debugger.toggle-pause", | 24 "actionId": "debugger.toggle-pause", |
| 25 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", | 25 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", |
| 26 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut
Registry.ForwardedShortcut"], | 26 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut
Registry.ForwardedShortcut"], |
| 27 "bindings": [ | 27 "bindings": [ |
| 28 { | 28 { |
| 29 "platform": "windows,linux", | 29 "platform": "windows,linux", |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "filteredItemSelectionDialog.css", | 333 "filteredItemSelectionDialog.css", |
| 334 "uiList.css", | 334 "uiList.css", |
| 335 "navigatorView.css", | 335 "navigatorView.css", |
| 336 "revisionHistory.css", | 336 "revisionHistory.css", |
| 337 "serviceWorkersSidebar.css", | 337 "serviceWorkersSidebar.css", |
| 338 "sourcesPanel.css", | 338 "sourcesPanel.css", |
| 339 "sourcesSearch.css", | 339 "sourcesSearch.css", |
| 340 "sourcesView.css" | 340 "sourcesView.css" |
| 341 ] | 341 ] |
| 342 } | 342 } |
| OLD | NEW |