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

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

Issue 2815373003: DevTools: Add more views to command menu (Closed)
Patch Set: Add panel location Created 3 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
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@Common.AppProvider", 4 "type": "@Common.AppProvider",
5 "className": "Main.SimpleAppProvider", 5 "className": "Main.SimpleAppProvider",
6 "order": 10 6 "order": 10
7 }, 7 },
8 { 8 {
9 "type": "@UI.ContextMenu.Provider", 9 "type": "@UI.ContextMenu.Provider",
10 "contextTypes": [ 10 "contextTypes": [
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 }, 406 },
407 { 407 {
408 "value": "undocked", 408 "value": "undocked",
409 "title": "Undock into separate window" 409 "title": "Undock into separate window"
410 } 410 }
411 ] 411 ]
412 }, 412 },
413 { 413 {
414 "type": "@UI.ViewLocationResolver", 414 "type": "@UI.ViewLocationResolver",
415 "name": "drawer-view", 415 "name": "drawer-view",
416 "category": "Drawer",
416 "className": "UI.InspectorView" 417 "className": "UI.InspectorView"
417 }, 418 },
418 { 419 {
420 "type": "@UI.ViewLocationResolver",
421 "name": "panel",
422 "category": "Panel",
423 "className": "UI.InspectorView"
424 },
425 {
419 "type": "@UI.ActionDelegate", 426 "type": "@UI.ActionDelegate",
420 "actionId": "components.collect-garbage", 427 "actionId": "components.collect-garbage",
421 "title": "Collect garbage", 428 "title": "Collect garbage",
422 "iconClass": "largeicon-trash-bin", 429 "iconClass": "largeicon-trash-bin",
423 "className": "Main.GCActionDelegate" 430 "className": "Main.GCActionDelegate"
424 }, 431 },
425 { 432 {
426 "type": "@UI.ActionDelegate", 433 "type": "@UI.ActionDelegate",
427 "category": "Mobile", 434 "category": "Mobile",
428 "actionId": "components.request-app-banner", 435 "actionId": "components.request-app-banner",
(...skipping 20 matching lines...) Expand all
449 "ExecutionContextSelector.js", 456 "ExecutionContextSelector.js",
450 "Main.js" 457 "Main.js"
451 ], 458 ],
452 "resources": [ 459 "resources": [
453 "errorWarningCounter.css", 460 "errorWarningCounter.css",
454 "remoteDebuggingTerminatedScreen.css", 461 "remoteDebuggingTerminatedScreen.css",
455 "renderingOptions.css", 462 "renderingOptions.css",
456 "targetCrashedScreen.css" 463 "targetCrashedScreen.css"
457 ] 464 ]
458 } 465 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698