Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 334 }, | 334 }, |
| 335 { | 335 { |
| 336 "type": "drawer-view", | 336 "type": "drawer-view", |
| 337 "name": "sources.history", | 337 "name": "sources.history", |
| 338 "title": "History", | 338 "title": "History", |
| 339 "persistence": "temporary", | 339 "persistence": "temporary", |
| 340 "className": "WebInspector.RevisionHistoryView" | 340 "className": "WebInspector.RevisionHistoryView" |
| 341 } | 341 } |
| 342 ], | 342 ], |
| 343 "dependencies": [ | 343 "dependencies": [ |
| 344 "es_tree", | |
|
dgozman
2016/02/22 17:24:56
Probably don't need this.
sergeyv
2016/02/22 21:42:54
Done.
| |
| 344 "components", | 345 "components", |
| 345 "source_frame", | 346 "source_frame", |
| 346 "snippets", | 347 "snippets", |
| 347 "ui_lazy", | 348 "ui_lazy", |
| 348 "extensions" | 349 "extensions" |
| 349 ], | 350 ], |
| 350 "scripts": [ | 351 "scripts": [ |
| 351 "UIList.js", | 352 "UIList.js", |
| 352 "AddSourceMapURLDialog.js", | 353 "AddSourceMapURLDialog.js", |
| 353 "AsyncOperationsSidebarPane.js", | 354 "AsyncOperationsSidebarPane.js", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 389 "addSourceMapURLDialog.css", | 390 "addSourceMapURLDialog.css", |
| 390 "uiList.css", | 391 "uiList.css", |
| 391 "navigatorView.css", | 392 "navigatorView.css", |
| 392 "revisionHistory.css", | 393 "revisionHistory.css", |
| 393 "serviceWorkersSidebar.css", | 394 "serviceWorkersSidebar.css", |
| 394 "sourcesPanel.css", | 395 "sourcesPanel.css", |
| 395 "sourcesSearch.css", | 396 "sourcesSearch.css", |
| 396 "sourcesView.css" | 397 "sourcesView.css" |
| 397 ] | 398 ] |
| 398 } | 399 } |
| OLD | NEW |