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

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

Issue 2234193002: DevTools: migrate some of the sources panel sidebar panes to view management, allow view toolbars. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 4 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.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 30, 7 "order": 30,
8 "className": "WebInspector.SourcesPanel" 8 "className": "WebInspector.SourcesPanel"
9 }, 9 },
10 { 10 {
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 "className": "WebInspector.SourcesPanel" 367 "className": "WebInspector.SourcesPanel"
368 }, 368 },
369 { 369 {
370 "type": "@WebInspector.ViewLocationResolver", 370 "type": "@WebInspector.ViewLocationResolver",
371 "name": "sources-sidebar", 371 "name": "sources-sidebar",
372 "className": "WebInspector.SourcesPanel" 372 "className": "WebInspector.SourcesPanel"
373 }, 373 },
374 { 374 {
375 "type": "view", 375 "type": "view",
376 "location": "sources-sidebar", 376 "location": "sources-sidebar",
377 "id": "sources.xhrBreakpoints",
378 "title": "XHR Breakpoints",
379 "order": 5,
380 "hasToolbar": "true",
381 "persistence": "permanent",
382 "className": "WebInspector.XHRBreakpointsSidebarPane"
383 },
384 {
385 "type": "view",
386 "location": "sources-sidebar",
377 "id": "sources.domBreakpoints", 387 "id": "sources.domBreakpoints",
378 "title": "DOM Breakpoints", 388 "title": "DOM Breakpoints",
379 "order": 7, 389 "order": 7,
380 "persistence": "permanent", 390 "persistence": "permanent",
381 "factoryName": "WebInspector.DOMBreakpointsSidebarPane.Proxy" 391 "factoryName": "WebInspector.DOMBreakpointsSidebarPane.Proxy"
392 },
393 {
394 "type": "view",
395 "location": "sources-sidebar",
396 "id": "sources.globalListeners",
397 "title": "Global Listeners",
398 "order": 8,
399 "hasToolbar": "true",
400 "persistence": "permanent",
401 "className": "WebInspector.ObjectEventListenersSidebarPane"
402 },
403 {
404 "type": "view",
405 "location": "sources-sidebar",
406 "id": "sources.eventListenerBreakpoints",
407 "title": "Event Listener Breakpoints",
408 "order": 9,
409 "persistence": "permanent",
410 "className": "WebInspector.EventListenerBreakpointsSidebarPane"
382 } 411 }
383 ], 412 ],
384 "dependencies": [ 413 "dependencies": [
385 "components", 414 "components",
386 "source_frame", 415 "source_frame",
387 "snippets", 416 "snippets",
388 "ui_lazy", 417 "ui_lazy",
389 "extensions" 418 "extensions"
390 ], 419 ],
391 "scripts": [ 420 "scripts": [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 "addSourceMapURLDialog.css", 459 "addSourceMapURLDialog.css",
431 "uiList.css", 460 "uiList.css",
432 "navigatorView.css", 461 "navigatorView.css",
433 "revisionHistory.css", 462 "revisionHistory.css",
434 "serviceWorkersSidebar.css", 463 "serviceWorkersSidebar.css",
435 "sourcesPanel.css", 464 "sourcesPanel.css",
436 "sourcesSearch.css", 465 "sourcesSearch.css",
437 "sourcesView.css" 466 "sourcesView.css"
438 ] 467 ]
439 } 468 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698