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

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

Issue 1653053002: Devtools: parse variables scopes and sourcemap them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698