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

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

Issue 2744883003: DevTools: generalize setting UI for enum/select settings (Closed)
Patch Set: ac Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 }, 372 },
373 { 373 {
374 "type": "setting", 374 "type": "setting",
375 "category": "DevTools", 375 "category": "DevTools",
376 "settingName": "currentDockState", 376 "settingName": "currentDockState",
377 "settingType": "enum", 377 "settingType": "enum",
378 "defaultValue": "right", 378 "defaultValue": "right",
379 "options": [ 379 "options": [
380 { 380 {
381 "value": "right", 381 "value": "right",
382 "text": "Right",
382 "title": "Dock to right" 383 "title": "Dock to right"
383 }, 384 },
384 { 385 {
385 "value": "bottom", 386 "value": "bottom",
387 "text": "Bottom",
386 "title": "Dock to bottom" 388 "title": "Dock to bottom"
387 }, 389 },
388 { 390 {
389 "value": "undocked", 391 "value": "undocked",
392 "text": "Undocked",
390 "title": "Undock into separate window" 393 "title": "Undock into separate window"
391 } 394 }
392 ] 395 ]
393 }, 396 },
394 { 397 {
395 "type": "@UI.ViewLocationResolver", 398 "type": "@UI.ViewLocationResolver",
396 "name": "drawer-view", 399 "name": "drawer-view",
397 "category": "Drawer", 400 "category": "Drawer",
398 "className": "UI.InspectorView" 401 "className": "UI.InspectorView"
399 }, 402 },
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "ExecutionContextSelector.js", 439 "ExecutionContextSelector.js",
437 "Main.js" 440 "Main.js"
438 ], 441 ],
439 "resources": [ 442 "resources": [
440 "errorWarningCounter.css", 443 "errorWarningCounter.css",
441 "remoteDebuggingTerminatedScreen.css", 444 "remoteDebuggingTerminatedScreen.css",
442 "renderingOptions.css", 445 "renderingOptions.css",
443 "targetCrashedScreen.css" 446 "targetCrashedScreen.css"
444 ] 447 ]
445 } 448 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698