OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.Panel", | 4 "type": "@WebInspector.Panel", |
5 "name": "sources", | 5 "name": "sources", |
6 "title": "Sources", | 6 "title": "Sources", |
7 "order": 2, | 7 "order": 2, |
8 "className": "WebInspector.SourcesPanel" | 8 "className": "WebInspector.SourcesPanel" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "settingType": "checkbox" | 171 "settingType": "checkbox" |
172 }, | 172 }, |
173 { | 173 { |
174 "type": "ui-setting", | 174 "type": "ui-setting", |
175 "title": "Auto-reload generated CSS", | 175 "title": "Auto-reload generated CSS", |
176 "parentSettingName": "cssSourceMapsEnabled", | 176 "parentSettingName": "cssSourceMapsEnabled", |
177 "settingName": "cssReloadEnabled", | 177 "settingName": "cssReloadEnabled", |
178 "settingType": "checkbox" | 178 "settingType": "checkbox" |
179 } | 179 } |
180 ], | 180 ], |
181 "dependencies": ["source_frame"], | 181 "dependencies": [ "source_frame" ], |
182 "scripts": [ | 182 "scripts": [ "SourcesPanel.js" ] |
183 "jsdifflib.js", | |
184 "Placard.js", | |
185 "AddSourceMapURLDialog.js", | |
186 "BreakpointsSidebarPane.js", | |
187 "CallStackSidebarPane.js", | |
188 "SimpleHistoryManager.js", | |
189 "EditingLocationHistoryManager.js", | |
190 "FilePathScoreFunction.js", | |
191 "FilteredItemSelectionDialog.js", | |
192 "UISourceCodeFrame.js", | |
193 "JavaScriptSourceFrame.js", | |
194 "CSSSourceFrame.js", | |
195 "NavigatorView.js", | |
196 "RevisionHistoryView.js", | |
197 "ScopeChainSidebarPane.js", | |
198 "SourcesNavigator.js", | |
199 "StyleSheetOutlineDialog.js", | |
200 "TabbedEditorContainer.js", | |
201 "WatchExpressionsSidebarPane.js", | |
202 "WorkersSidebarPane.js", | |
203 "ScriptFormatterEditorAction.js", | |
204 "InplaceFormatterEditorAction.js", | |
205 "ScriptFormatter.js", | |
206 "SourcesView.js", | |
207 "AdvancedSearchView.js", | |
208 "FileBasedSearchResultsPane.js", | |
209 "SourcesSearchScope.js", | |
210 "SourcesPanel.js" | |
211 ] | |
212 } | 183 } |
OLD | NEW |