Chromium Code Reviews| OLD | NEW |
|---|---|
| 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": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw orkRequest"], | 10 "contextTypes": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw orkRequest"], |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 ] | 258 ] |
| 259 }, | 259 }, |
| 260 { | 260 { |
| 261 "type": "setting", | 261 "type": "setting", |
| 262 "category": "Appearance", | 262 "category": "Appearance", |
| 263 "title": "Theme:", | 263 "title": "Theme:", |
| 264 "settingName": "uiTheme", | 264 "settingName": "uiTheme", |
| 265 "settingType": "enum", | 265 "settingType": "enum", |
| 266 "defaultValue": "default", | 266 "defaultValue": "default", |
| 267 "options": [ | 267 "options": [ |
| 268 { "title": "Switch to default theme", "text": "Default", "value" : "default" }, | 268 { "title": "Switch to light theme", "text": "Light", "value": "d efault" }, |
|
pfeldman
2016/12/17 01:14:00
We should add a "dark" tag to both.
| |
| 269 { "title": "Switch to dark theme", "text": "Dark", "value": "dar k" } | 269 { "title": "Switch to dark theme", "text": "Dark", "value": "dar k" } |
| 270 ] | 270 ] |
| 271 }, | 271 }, |
| 272 { | 272 { |
| 273 "type": "setting", | 273 "type": "setting", |
| 274 "category": "Appearance", | 274 "category": "Appearance", |
| 275 "title": "Panel layout:", | 275 "title": "Panel layout:", |
| 276 "settingName": "sidebarPosition", | 276 "settingName": "sidebarPosition", |
| 277 "settingType": "enum", | 277 "settingType": "enum", |
| 278 "defaultValue": "auto", | 278 "defaultValue": "auto", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 365 "OverlayController.js", | 365 "OverlayController.js", |
| 366 "Main.js" | 366 "Main.js" |
| 367 ], | 367 ], |
| 368 "resources": [ | 368 "resources": [ |
| 369 "errorWarningCounter.css", | 369 "errorWarningCounter.css", |
| 370 "remoteDebuggingTerminatedScreen.css", | 370 "remoteDebuggingTerminatedScreen.css", |
| 371 "renderingOptions.css", | 371 "renderingOptions.css", |
| 372 "targetCrashedScreen.css" | 372 "targetCrashedScreen.css" |
| 373 ] | 373 ] |
| 374 } | 374 } |
| OLD | NEW |