Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.AppProvider", | 4 "type": "@WebInspector.AppProvider", |
| 5 "condition": "can_dock", | 5 "condition": "can_dock", |
| 6 "className": "WebInspector.AdvancedAppProvider", | 6 "className": "WebInspector.AdvancedAppProvider", |
| 7 "order": 0 | 7 "order": 0 |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "type": "@WebInspector.AppProvider", | 10 "type": "@WebInspector.AppProvider", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 202 "order": 2, | 202 "order": 2, |
| 203 "location": "toolbar-right" | 203 "location": "toolbar-right" |
| 204 }, | 204 }, |
| 205 { | 205 { |
| 206 "type": "@WebInspector.StatusBarItem.Provider", | 206 "type": "@WebInspector.StatusBarItem.Provider", |
| 207 "className": "WebInspector.DockController.ButtonProvider", | 207 "className": "WebInspector.DockController.ButtonProvider", |
| 208 "order": 4, | 208 "order": 4, |
| 209 "location": "toolbar-right" | 209 "location": "toolbar-right" |
| 210 }, | 210 }, |
| 211 { | 211 { |
| 212 "type": "ui-setting", | 212 "type": "setting", |
| 213 "title": "Disable cache (while DevTools is open)", | 213 "title": "Disable cache (while DevTools is open)", |
| 214 "settingName": "cacheDisabled", | 214 "settingName": "cacheDisabled", |
| 215 "settingType": "checkbox" | 215 "settingType": "boolean" |
| 216 }, | 216 }, |
| 217 { | 217 { |
| 218 "type": "ui-setting", | 218 "type": "setting", |
| 219 "title": "Disable JavaScript", | 219 "title": "Disable JavaScript", |
| 220 "settingName": "javaScriptDisabled", | 220 "settingName": "javaScriptDisabled", |
| 221 "settingType": "checkbox" | 221 "settingType": "boolean" |
| 222 }, | 222 }, |
| 223 { | 223 { |
| 224 "type": "ui-setting", | 224 "type": "setting", |
| 225 "section": "Appearance", | 225 "category": "Appearance", |
| 226 "title": "Split panels vertically when docked to right", | 226 "title": "Split panels vertically when docked to right", |
| 227 "settingName": "splitVerticallyWhenDockedToRight", | 227 "settingName": "splitVerticallyWhenDockedToRight", |
| 228 "settingType": "checkbox" | 228 "settingType": "boolean" |
| 229 }, | 229 }, |
| 230 { | 230 { |
| 231 "type": "ui-setting", | 231 "type": "setting", |
| 232 "section": "Appearance", | 232 "category": "Appearance", |
| 233 "settingType": "custom", | 233 "title": "Enable Ctrl + 1-9 shortcut to switch panels", |
| 234 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate" | 234 "title-mac": "Enable Cmd + 1-9 shortcut to switch panels", |
|
dgozman
2015/04/06 14:40:36
What about the following?
"title": [ { "platform":
pfeldman
2015/04/06 17:15:00
Acknowledged.
| |
| 235 "settingName": "shortcutPanelSwitch", | |
| 236 "settingType": "boolean" | |
| 235 }, | 237 }, |
| 236 { | 238 { |
| 237 "type": "ui-setting", | 239 "type": "setting", |
| 238 "section": "Appearance", | 240 "category": "Appearance", |
| 239 "title": "Don't show emulation warnings", | 241 "title": "Don't show emulation warnings", |
| 240 "settingName": "disableOverridesWarning", | 242 "settingName": "disableOverridesWarning", |
| 241 "settingType": "checkbox" | 243 "settingType": "boolean" |
| 242 }, | 244 }, |
| 243 { | 245 { |
| 244 "type": "ui-setting", | 246 "type": "setting", |
| 245 "section": "Appearance", | 247 "category": "Appearance", |
| 246 "title": "Disable paused state overlay", | 248 "title": "Disable paused state overlay", |
| 247 "settingName": "disablePausedStateOverlay", | 249 "settingName": "disablePausedStateOverlay", |
| 248 "settingType": "checkbox" | 250 "settingType": "boolean" |
| 249 }, | 251 }, |
| 250 { | 252 { |
| 251 "type": "ui-setting", | 253 "type": "@WebInspector.SettingUI", |
| 252 "section": "Extensions", | 254 "category": "Extensions", |
| 253 "settingType": "custom", | 255 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting UI" |
| 254 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate" | |
| 255 } | 256 } |
| 256 ], | 257 ], |
| 257 "dependencies": [ | 258 "dependencies": [ |
| 258 "extensions", | 259 "extensions", |
| 259 "host", | 260 "host", |
| 260 "platform", | 261 "platform", |
| 261 "sdk", | 262 "sdk", |
| 262 "toolbox" | 263 "toolbox" |
| 263 ], | 264 ], |
| 264 "scripts": [ | 265 "scripts": [ |
| 265 "HelpScreenUntilReload.js", | 266 "HelpScreenUntilReload.js", |
| 266 "AdvancedApp.js", | 267 "AdvancedApp.js", |
| 267 "OverridesView.js", | 268 "OverridesView.js", |
| 268 "RenderingOptions.js", | 269 "RenderingOptions.js", |
| 269 "SimpleApp.js", | 270 "SimpleApp.js", |
| 270 "TestController.js", | 271 "TestController.js", |
| 271 "Tests.js", | 272 "Tests.js", |
| 272 "OverlayController.js", | 273 "OverlayController.js", |
| 273 "Main.js" | 274 "Main.js" |
| 274 ], | 275 ], |
| 275 "skip_compilation": [ | 276 "skip_compilation": [ |
| 276 "Tests.js" | 277 "Tests.js" |
| 277 ], | 278 ], |
| 278 "stylesheets": [ | 279 "stylesheets": [ |
| 279 "accelerometer.css", | 280 "accelerometer.css", |
| 280 "overrides.css" | 281 "overrides.css" |
| 281 ] | 282 ] |
| 282 } | 283 } |
| OLD | NEW |