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

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

Issue 2080893002: Close all sources command (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 "persistence": "temporary", 325 "persistence": "temporary",
326 "className": "WebInspector.RevisionHistoryView" 326 "className": "WebInspector.RevisionHistoryView"
327 }, 327 },
328 { 328 {
329 "type": "drawer-view", 329 "type": "drawer-view",
330 "name": "sources.quick", 330 "name": "sources.quick",
331 "title": "Quick source", 331 "title": "Quick source",
332 "persistence": "closeable", 332 "persistence": "closeable",
333 "order": 1000, 333 "order": 1000,
334 "className": "WebInspector.SourcesPanel.WrapperView" 334 "className": "WebInspector.SourcesPanel.WrapperView"
335 },
336 {
337 "type": "@WebInspector.ActionDelegate",
338 "category": "Sources",
339 "actionId": "sources.close-all",
340 "className": "WebInspector.SourcesView.CloseAllActionDelegate",
341 "title": "Close All"
335 } 342 }
336 ], 343 ],
337 "dependencies": [ 344 "dependencies": [
338 "components", 345 "components",
339 "source_frame", 346 "source_frame",
340 "snippets", 347 "snippets",
341 "ui_lazy", 348 "ui_lazy",
342 "extensions" 349 "extensions"
343 ], 350 ],
344 "scripts": [ 351 "scripts": [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 "addSourceMapURLDialog.css", 390 "addSourceMapURLDialog.css",
384 "uiList.css", 391 "uiList.css",
385 "navigatorView.css", 392 "navigatorView.css",
386 "revisionHistory.css", 393 "revisionHistory.css",
387 "serviceWorkersSidebar.css", 394 "serviceWorkersSidebar.css",
388 "sourcesPanel.css", 395 "sourcesPanel.css",
389 "sourcesSearch.css", 396 "sourcesSearch.css",
390 "sourcesView.css" 397 "sourcesView.css"
391 ] 398 ]
392 } 399 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698