| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.Panel", | 4 "type": "@WebInspector.Panel", |
| 5 "name": "sources", | 5 "name": "sources", |
| 6 "title": "Sources", | 6 "title": "Sources", |
| 7 "order": 2, | 7 "order": 2, |
| 8 "className": "WebInspector.SourcesPanel" | 8 "className": "WebInspector.SourcesPanel" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "platform": "mac", | 84 "platform": "mac", |
| 85 "shortcut": "Meta+O Meta+P" | 85 "shortcut": "Meta+O Meta+P" |
| 86 }, | 86 }, |
| 87 { | 87 { |
| 88 "platform": "windows,linux", | 88 "platform": "windows,linux", |
| 89 "shortcut": "Ctrl+O Ctrl+P" | 89 "shortcut": "Ctrl+O Ctrl+P" |
| 90 } | 90 } |
| 91 ] | 91 ] |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 "type": "@WebInspector.ActionDelegate", |
| 95 "actionId": "sources.switch-file", |
| 96 "className": "WebInspector.SourcesView.SwitchFileActionDelegate", |
| 97 "contextTypes": ["WebInspector.SourcesView"], |
| 98 "bindings": [ |
| 99 { |
| 100 "shortcut": "Alt+O" |
| 101 } |
| 102 ] |
| 103 }, |
| 104 { |
| 94 "type": "ui-setting", | 105 "type": "ui-setting", |
| 95 "settingName": "javaScriptDisabled", | 106 "settingName": "javaScriptDisabled", |
| 96 "settingType": "custom", | 107 "settingType": "custom", |
| 97 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele
gate" | 108 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele
gate" |
| 98 }, | 109 }, |
| 99 { | 110 { |
| 100 "type": "ui-setting", | 111 "type": "ui-setting", |
| 101 "section": "Sources", | 112 "section": "Sources", |
| 102 "title": "Search in content scripts", | 113 "title": "Search in content scripts", |
| 103 "settingName": "searchInContentScripts", | 114 "settingName": "searchInContentScripts", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "type": "ui-setting", | 160 "type": "ui-setting", |
| 150 "title": "Auto-reload generated CSS", | 161 "title": "Auto-reload generated CSS", |
| 151 "parentSettingName": "cssSourceMapsEnabled", | 162 "parentSettingName": "cssSourceMapsEnabled", |
| 152 "settingName": "cssReloadEnabled", | 163 "settingName": "cssReloadEnabled", |
| 153 "settingType": "checkbox" | 164 "settingType": "checkbox" |
| 154 } | 165 } |
| 155 ], | 166 ], |
| 156 "dependencies": [ "source_frame" ], | 167 "dependencies": [ "source_frame" ], |
| 157 "scripts": [ "SourcesPanel.js" ] | 168 "scripts": [ "SourcesPanel.js" ] |
| 158 } | 169 } |
| OLD | NEW |