| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "sources", | 5 "name": "sources", |
| 6 "title": "Sources", | 6 "title": "Sources", |
| 7 "order": 30, | 7 "order": 30, |
| 8 "className": "WebInspector.SourcesPanelFactory" | 8 "className": "WebInspector.SourcesPanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "shortcut": "Meta+F8" | 150 "shortcut": "Meta+F8" |
| 151 } | 151 } |
| 152 ] | 152 ] |
| 153 }, | 153 }, |
| 154 { | 154 { |
| 155 "type": "context-menu-item", | 155 "type": "context-menu-item", |
| 156 "location": "mainMenu/navigate", | 156 "location": "mainMenu/navigate", |
| 157 "actionId": "sources.search.toggle" | 157 "actionId": "sources.search.toggle" |
| 158 }, | 158 }, |
| 159 { | 159 { |
| 160 "type": "context-menu-item", |
| 161 "location": "navigatorMenu/navigate", |
| 162 "actionId": "sources.go-to-source" |
| 163 }, |
| 164 { |
| 160 "type": "@WebInspector.Revealer", | 165 "type": "@WebInspector.Revealer", |
| 161 "contextTypes": ["WebInspector.UILocation"], | 166 "contextTypes": ["WebInspector.UILocation"], |
| 162 "className": "WebInspector.SourcesPanel.UILocationRevealer" | 167 "className": "WebInspector.SourcesPanel.UILocationRevealer" |
| 163 }, | 168 }, |
| 164 { | 169 { |
| 165 "type": "@WebInspector.Revealer", | 170 "type": "@WebInspector.Revealer", |
| 166 "contextTypes": ["WebInspector.DebuggerModel.Location"], | 171 "contextTypes": ["WebInspector.DebuggerModel.Location"], |
| 167 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" | 172 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" |
| 168 }, | 173 }, |
| 169 { | 174 { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "type": "navigator-view", | 209 "type": "navigator-view", |
| 205 "name": "snippets", | 210 "name": "snippets", |
| 206 "title": "Snippets", | 211 "title": "Snippets", |
| 207 "order": 3, | 212 "order": 3, |
| 208 "persistence": "permanent", | 213 "persistence": "permanent", |
| 209 "className": "WebInspector.SnippetsNavigatorView" | 214 "className": "WebInspector.SnippetsNavigatorView" |
| 210 }, | 215 }, |
| 211 { | 216 { |
| 212 "type": "@WebInspector.ActionDelegate", | 217 "type": "@WebInspector.ActionDelegate", |
| 213 "actionId": "sources.go-to-source", | 218 "actionId": "sources.go-to-source", |
| 219 "title": "Go to file...", |
| 214 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", | 220 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", |
| 215 "order": 100, | 221 "order": 100, |
| 216 "bindings": [ | 222 "bindings": [ |
| 217 { | 223 { |
| 218 "platform": "mac", | 224 "platform": "mac", |
| 219 "shortcut": "Meta+O Meta+P" | 225 "shortcut": "Meta+O Meta+P" |
| 220 }, | 226 }, |
| 221 { | 227 { |
| 222 "platform": "windows,linux", | 228 "platform": "windows,linux", |
| 223 "shortcut": "Ctrl+O Ctrl+P" | 229 "shortcut": "Ctrl+O Ctrl+P" |
| 224 } | 230 } |
| 225 ] | 231 ] |
| 226 }, | 232 }, |
| 227 { | 233 { |
| 228 "type": "@WebInspector.ActionDelegate", | 234 "type": "@WebInspector.ActionDelegate", |
| 229 "actionId": "sources.switch-file", | 235 "actionId": "sources.switch-file", |
| 230 "className": "WebInspector.SourcesView.SwitchFileActionDelegate", | 236 "className": "WebInspector.SourcesView.SwitchFileActionDelegate", |
| 231 "contextTypes": ["WebInspector.SourcesView"], | 237 "contextTypes": ["WebInspector.SourcesView"], |
| 232 "bindings": [ | 238 "bindings": [ |
| 233 { | 239 { |
| 234 "shortcut": "Alt+O" | 240 "shortcut": "Alt+O" |
| 235 } | 241 } |
| 236 ] | 242 ] |
| 237 }, | 243 }, |
| 238 { | 244 { |
| 239 "type": "setting", | 245 "type": "setting", |
| 240 "category": "Sources", | 246 "settingName": "navigatorGroupByFrame", |
| 241 "title": "Group items by", | 247 "settingType": "boolean", |
| 242 "settingName": "navigatorGrouping", | 248 "defaultValue": "true" |
| 243 "settingType": "enum", | |
| 244 "defaultValue": "frame/domain/folder", | |
| 245 "options": [ | |
| 246 ["Frames", "frame"], | |
| 247 ["Frames and Domains", "frame/domain"], | |
| 248 ["Frames, Domains and Folders", "frame/domain/folder"], | |
| 249 ["Domains", "domain"], | |
| 250 ["Domains and Folders", "domain/folder"] | |
| 251 ] | |
| 252 }, | 249 }, |
| 253 { | 250 { |
| 254 "type": "setting", | 251 "type": "setting", |
| 252 "settingName": "navigatorGroupByDomain", |
| 253 "settingType": "boolean", |
| 254 "defaultValue": "true" |
| 255 }, |
| 256 { |
| 257 "type": "setting", |
| 258 "settingName": "navigatorGroupByFolder", |
| 259 "settingType": "boolean", |
| 260 "defaultValue": "true" |
| 261 }, |
| 262 { |
| 263 "type": "setting", |
| 255 "category": "Sources", | 264 "category": "Sources", |
| 256 "title": "Search in content scripts", | 265 "title": "Search in content scripts", |
| 257 "settingName": "searchInContentScripts", | 266 "settingName": "searchInContentScripts", |
| 258 "settingType": "boolean", | 267 "settingType": "boolean", |
| 259 "defaultValue": false | 268 "defaultValue": false |
| 260 }, | 269 }, |
| 261 { | 270 { |
| 262 "type": "setting", | 271 "type": "setting", |
| 263 "category": "Sources", | 272 "category": "Sources", |
| 264 "title": "Enable JavaScript source maps", | 273 "title": "Enable JavaScript source maps", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "addSourceMapURLDialog.css", | 401 "addSourceMapURLDialog.css", |
| 393 "uiList.css", | 402 "uiList.css", |
| 394 "navigatorView.css", | 403 "navigatorView.css", |
| 395 "revisionHistory.css", | 404 "revisionHistory.css", |
| 396 "serviceWorkersSidebar.css", | 405 "serviceWorkersSidebar.css", |
| 397 "sourcesPanel.css", | 406 "sourcesPanel.css", |
| 398 "sourcesSearch.css", | 407 "sourcesSearch.css", |
| 399 "sourcesView.css" | 408 "sourcesView.css" |
| 400 ] | 409 ] |
| 401 } | 410 } |
| OLD | NEW |