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": [ | 10 "contextTypes": [ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 222 }, | 222 }, |
| 223 { | 223 { |
| 224 "type": "@UI.ToolbarItem.Provider", | 224 "type": "@UI.ToolbarItem.Provider", |
| 225 "className": "Components.DockController.CloseButtonProvider", | 225 "className": "Components.DockController.CloseButtonProvider", |
| 226 "order": 100, | 226 "order": 100, |
| 227 "location": "main-toolbar-right" | 227 "location": "main-toolbar-right" |
| 228 }, | 228 }, |
| 229 { | 229 { |
| 230 "type": "setting", | 230 "type": "setting", |
| 231 "category": "Network", | 231 "category": "Network", |
| 232 "title": "Disable cache (while DevTools is open)", | 232 "title": "Disable cache", |
|
pfeldman
2017/02/07 20:10:28
There should be a way to override title in the too
luoe
2017/02/13 06:27:19
Done.
| |
| 233 "settingName": "cacheDisabled", | 233 "settingName": "cacheDisabled", |
| 234 "settingType": "boolean", | 234 "settingType": "boolean", |
| 235 "order": 0, | 235 "order": 0, |
| 236 "defaultValue": false, | 236 "defaultValue": false, |
| 237 "options": [ | 237 "options": [ |
| 238 { | 238 { |
| 239 "value": true, | 239 "value": true, |
| 240 "title": "Disable cache (while DevTools is open)" | 240 "title": "Disable cache (while DevTools is open)" |
| 241 }, | 241 }, |
| 242 { | 242 { |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 438 "ExecutionContextSelector.js", | 438 "ExecutionContextSelector.js", |
| 439 "Main.js" | 439 "Main.js" |
| 440 ], | 440 ], |
| 441 "resources": [ | 441 "resources": [ |
| 442 "errorWarningCounter.css", | 442 "errorWarningCounter.css", |
| 443 "remoteDebuggingTerminatedScreen.css", | 443 "remoteDebuggingTerminatedScreen.css", |
| 444 "renderingOptions.css", | 444 "renderingOptions.css", |
| 445 "targetCrashedScreen.css" | 445 "targetCrashedScreen.css" |
| 446 ] | 446 ] |
| 447 } | 447 } |
| OLD | NEW |