| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.ActionDelegate", | 4 "type": "@WebInspector.ActionDelegate", |
| 5 "actionId": "settings.show", | 5 "actionId": "settings.show", |
| 6 "title": "Settings", |
| 6 "className": "WebInspector.SettingsController.ActionDelegate", | 7 "className": "WebInspector.SettingsController.ActionDelegate", |
| 7 "bindings": [ | 8 "bindings": [ |
| 8 { | 9 { |
| 9 "shortcut": "F1 Shift+?" | 10 "shortcut": "F1 Shift+?" |
| 10 } | 11 } |
| 11 ] | 12 ] |
| 12 }, | 13 }, |
| 13 { | 14 { |
| 14 "type": "@WebInspector.ActionDelegate", | 15 "type": "@WebInspector.ActionDelegate", |
| 15 "actionId": "settings.help", | 16 "actionId": "settings.help", |
| 17 "title": "Help", |
| 16 "className": "WebInspector.SettingsController.ActionDelegate" | 18 "className": "WebInspector.SettingsController.ActionDelegate" |
| 17 }, | 19 }, |
| 18 { | 20 { |
| 19 "type": "@WebInspector.ActionDelegate", | 21 "type": "@WebInspector.ActionDelegate", |
| 20 "actionId": "settings.shortcuts", | 22 "actionId": "settings.shortcuts", |
| 23 "title": "Shortcuts", |
| 21 "className": "WebInspector.SettingsController.ActionDelegate" | 24 "className": "WebInspector.SettingsController.ActionDelegate" |
| 22 }, | 25 }, |
| 23 { | 26 { |
| 24 "type": "@WebInspector.SettingUI", | 27 "type": "@WebInspector.SettingUI", |
| 25 "category": "Sources", | 28 "category": "Sources", |
| 26 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti
ngUI", | 29 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti
ngUI", |
| 27 "settings": [ | 30 "settings": [ |
| 28 "skipContentScripts", | 31 "skipContentScripts", |
| 29 "skipStackFramesPattern" | 32 "skipStackFramesPattern" |
| 30 ] | 33 ] |
| 31 }, | 34 }, |
| 32 { | 35 { |
| 33 "type": "@WebInspector.Revealer", | 36 "type": "@WebInspector.Revealer", |
| 34 "contextTypes": ["WebInspector.Setting"], | 37 "contextTypes": ["WebInspector.Setting"], |
| 35 "className": "WebInspector.SettingsController.Revealer" | 38 "className": "WebInspector.SettingsController.Revealer" |
| 36 }, | 39 }, |
| 37 { | 40 { |
| 38 "type": "context-menu-item", | 41 "type": "context-menu-item", |
| 39 "location": "mainMenu/footer", | 42 "location": "mainMenu/footer", |
| 40 "title": "Shortcuts", | |
| 41 "actionId": "settings.shortcuts" | 43 "actionId": "settings.shortcuts" |
| 42 }, | 44 }, |
| 43 { | 45 { |
| 44 "type": "context-menu-item", | 46 "type": "context-menu-item", |
| 45 "location": "mainMenu/footer", | 47 "location": "mainMenu/footer", |
| 46 "title": "Settings", | |
| 47 "actionId": "settings.show" | 48 "actionId": "settings.show" |
| 48 }, | 49 }, |
| 49 { | 50 { |
| 50 "type": "context-menu-item", | 51 "type": "context-menu-item", |
| 51 "location": "mainMenu/footer", | 52 "location": "mainMenu/footer", |
| 52 "title": "Help", | |
| 53 "actionId": "settings.help" | 53 "actionId": "settings.help" |
| 54 } | 54 } |
| 55 ], | 55 ], |
| 56 "dependencies": [ | 56 "dependencies": [ |
| 57 "components" | 57 "components" |
| 58 ], | 58 ], |
| 59 "scripts": [ | 59 "scripts": [ |
| 60 "EditFileSystemDialog.js", | 60 "EditFileSystemDialog.js", |
| 61 "FrameworkBlackboxDialog.js", | 61 "FrameworkBlackboxDialog.js", |
| 62 "SettingsScreen.js" | 62 "SettingsScreen.js" |
| 63 ] | 63 ] |
| 64 } | 64 } |
| OLD | NEW |