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

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

Issue 1361863002: Devtools: API To set the red/yellow squiggles for a file via DI (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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": 30, 7 "order": 30,
8 "className": "WebInspector.SourcesPanelFactory" 8 "className": "WebInspector.SourcesPanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "contextTypes": ["WebInspector.DebuggerModel.Location"], 157 "contextTypes": ["WebInspector.DebuggerModel.Location"],
158 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" 158 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer"
159 }, 159 },
160 { 160 {
161 "type": "@WebInspector.Revealer", 161 "type": "@WebInspector.Revealer",
162 "contextTypes": ["WebInspector.UISourceCode"], 162 "contextTypes": ["WebInspector.UISourceCode"],
163 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer" 163 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer"
164 }, 164 },
165 { 165 {
166 "type": "@WebInspector.Revealer", 166 "type": "@WebInspector.Revealer",
167 "contextTypes": ["WebInspector.UISourceCodeMessages"],
168 "className": "WebInspector.SourcesPanel.LineMessageRevealer"
169 },
170 {
171 "type": "@WebInspector.Revealer",
167 "contextTypes": ["WebInspector.DebuggerPausedDetails"], 172 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
168 "className": "WebInspector.SourcesPanel.DebuggerPausedDetailsReveale r" 173 "className": "WebInspector.SourcesPanel.DebuggerPausedDetailsReveale r"
169 }, 174 },
170 { 175 {
171 "type": "@WebInspector.SourcesView.EditorAction", 176 "type": "@WebInspector.SourcesView.EditorAction",
172 "className": "WebInspector.InplaceFormatterEditorAction" 177 "className": "WebInspector.InplaceFormatterEditorAction"
173 }, 178 },
174 { 179 {
175 "type": "@WebInspector.SourcesView.EditorAction", 180 "type": "@WebInspector.SourcesView.EditorAction",
176 "className": "WebInspector.ScriptFormatterEditorAction" 181 "className": "WebInspector.ScriptFormatterEditorAction"
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 "filteredItemSelectionDialog.css", 352 "filteredItemSelectionDialog.css",
348 "uiList.css", 353 "uiList.css",
349 "navigatorView.css", 354 "navigatorView.css",
350 "revisionHistory.css", 355 "revisionHistory.css",
351 "serviceWorkersSidebar.css", 356 "serviceWorkersSidebar.css",
352 "sourcesPanel.css", 357 "sourcesPanel.css",
353 "sourcesSearch.css", 358 "sourcesSearch.css",
354 "sourcesView.css" 359 "sourcesView.css"
355 ] 360 ]
356 } 361 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698