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

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

Issue 667623002: DevTools: make extension server a part of core, panels' code should depend on it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for review Created 6 years, 2 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 | Annotate | Revision Log
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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 "settingType": "checkbox" 176 "settingType": "checkbox"
177 }, 177 },
178 { 178 {
179 "type": "ui-setting", 179 "type": "ui-setting",
180 "title": "Auto-reload generated CSS", 180 "title": "Auto-reload generated CSS",
181 "parentSettingName": "cssSourceMapsEnabled", 181 "parentSettingName": "cssSourceMapsEnabled",
182 "settingName": "cssReloadEnabled", 182 "settingName": "cssReloadEnabled",
183 "settingType": "checkbox" 183 "settingType": "checkbox"
184 } 184 }
185 ], 185 ],
186 "dependencies": ["source_frame"], 186 "dependencies": [
187 "source_frame",
188 "extensions"
189 ],
187 "scripts": [ 190 "scripts": [
188 "jsdifflib.js", 191 "jsdifflib.js",
189 "Placard.js", 192 "Placard.js",
190 "AddSourceMapURLDialog.js", 193 "AddSourceMapURLDialog.js",
191 "BreakpointsSidebarPane.js", 194 "BreakpointsSidebarPane.js",
192 "CallStackSidebarPane.js", 195 "CallStackSidebarPane.js",
193 "SimpleHistoryManager.js", 196 "SimpleHistoryManager.js",
194 "EditingLocationHistoryManager.js", 197 "EditingLocationHistoryManager.js",
195 "FilePathScoreFunction.js", 198 "FilePathScoreFunction.js",
196 "FilteredItemSelectionDialog.js", 199 "FilteredItemSelectionDialog.js",
(...skipping 15 matching lines...) Expand all
212 "AdvancedSearchView.js", 215 "AdvancedSearchView.js",
213 "FileBasedSearchResultsPane.js", 216 "FileBasedSearchResultsPane.js",
214 "SourcesSearchScope.js", 217 "SourcesSearchScope.js",
215 "SourcesPanel.js", 218 "SourcesPanel.js",
216 "WorkspaceMappingTip.js" 219 "WorkspaceMappingTip.js"
217 ], 220 ],
218 "skip_compilation": [ 221 "skip_compilation": [
219 "jsdifflib.js" 222 "jsdifflib.js"
220 ] 223 ]
221 } 224 }
OLDNEW
« Source/devtools/front_end/main/Main.js ('K') | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698