| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "platform": "mac", | 102 "platform": "mac", |
| 103 "shortcut": "Meta+O Meta+P" | 103 "shortcut": "Meta+O Meta+P" |
| 104 }, | 104 }, |
| 105 { | 105 { |
| 106 "platform": "windows,linux", | 106 "platform": "windows,linux", |
| 107 "shortcut": "Ctrl+O Ctrl+P" | 107 "shortcut": "Ctrl+O Ctrl+P" |
| 108 } | 108 } |
| 109 ] | 109 ] |
| 110 }, | 110 }, |
| 111 { | 111 { |
| 112 "type": "@WebInspector.ActionDelegate", |
| 113 "actionId": "sources.switch-file", |
| 114 "className": "WebInspector.SourcesView.SwitchFileActionDelegate", |
| 115 "contextTypes": ["WebInspector.SourcesView"], |
| 116 "bindings": [ |
| 117 { |
| 118 "shortcut": "Alt+O" |
| 119 } |
| 120 ] |
| 121 }, |
| 122 { |
| 112 "type": "ui-setting", | 123 "type": "ui-setting", |
| 113 "settingName": "javaScriptDisabled", | 124 "settingName": "javaScriptDisabled", |
| 114 "settingType": "custom", | 125 "settingType": "custom", |
| 115 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele
gate" | 126 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele
gate" |
| 116 }, | 127 }, |
| 117 { | 128 { |
| 118 "type": "ui-setting", | 129 "type": "ui-setting", |
| 119 "section": "Sources", | 130 "section": "Sources", |
| 120 "title": "Search in content scripts", | 131 "title": "Search in content scripts", |
| 121 "settingName": "searchInContentScripts", | 132 "settingName": "searchInContentScripts", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "type": "ui-setting", | 178 "type": "ui-setting", |
| 168 "title": "Auto-reload generated CSS", | 179 "title": "Auto-reload generated CSS", |
| 169 "parentSettingName": "cssSourceMapsEnabled", | 180 "parentSettingName": "cssSourceMapsEnabled", |
| 170 "settingName": "cssReloadEnabled", | 181 "settingName": "cssReloadEnabled", |
| 171 "settingType": "checkbox" | 182 "settingType": "checkbox" |
| 172 } | 183 } |
| 173 ], | 184 ], |
| 174 "dependencies": [ "source_frame" ], | 185 "dependencies": [ "source_frame" ], |
| 175 "scripts": [ "SourcesPanel.js" ] | 186 "scripts": [ "SourcesPanel.js" ] |
| 176 } | 187 } |
| OLD | NEW |