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

Side by Side Diff: Source/devtools/scripts/frontend_modules.json

Issue 225873004: DevTools: Handle the F8 shortcut forwarded from the inspected page (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "name": "common", 3 "name": "common",
4 "dependencies": [], 4 "dependencies": [],
5 "sources": [ 5 "sources": [
6 "modules.js", 6 "modules.js",
7 "Color.js", 7 "Color.js",
8 "DOMExtension.js", 8 "DOMExtension.js",
9 "Geometry.js", 9 "Geometry.js",
10 "ModuleManager.js", 10 "ModuleManager.js",
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 "HeapSnapshotLoader.js", 409 "HeapSnapshotLoader.js",
410 "HeapSnapshotWorker.js", 410 "HeapSnapshotWorker.js",
411 "HeapSnapshotWorkerDispatcher.js", 411 "HeapSnapshotWorkerDispatcher.js",
412 "JSHeapSnapshot.js", 412 "JSHeapSnapshot.js",
413 "TextUtils.js", 413 "TextUtils.js",
414 "UIString.js", 414 "UIString.js",
415 "utilities.js" 415 "utilities.js"
416 ] 416 ]
417 }, 417 },
418 { 418 {
419 "name": "input",
420 "dependencies": ["sources"],
421 "sources": [
422 "ForwardedInputEventHandler.js"
423 ]
424 },
425 {
419 "name": "host_stub", 426 "name": "host_stub",
420 "dependencies": ["components", "profiler", "timeline"], 427 "dependencies": ["components", "profiler", "timeline", "sources", "input "],
421 "sources": [ 428 "sources": [
422 "InspectorFrontendAPI.js", 429 "InspectorFrontendAPI.js",
423 "InspectorFrontendHostStub.js" 430 "InspectorFrontendHostStub.js"
424 ] 431 ]
425 }, 432 },
426 { 433 {
427 "name": "script_formatter_worker", 434 "name": "script_formatter_worker",
428 "standalone": true, 435 "standalone": true,
429 "dependencies": [], 436 "dependencies": [],
430 "sources": [ 437 "sources": [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 "settings", 480 "settings",
474 "tests", 481 "tests",
475 "profiler", 482 "profiler",
476 "host_stub", 483 "host_stub",
477 "screencast", 484 "screencast",
478 "main" 485 "main"
479 ], 486 ],
480 "sources": [] 487 "sources": []
481 } 488 }
482 ] 489 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698