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

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

Issue 1264133002: Devtools: [WIP] Implement enhanced devtools extension language APIs Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Small cleanups - prefer URIs to contentURLs, revert protocol unifications, remove lambdas Created 5 years, 3 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
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js ('k') | Source/devtools/front_end/ui/SuggestBox.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698