| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "sources", | 6 "id": "sources", |
| 7 "title": "Sources", | 7 "title": "Sources", |
| 8 "order": 30, | 8 "order": 30, |
| 9 "className": "WebInspector.SourcesPanel" | 9 "className": "Sources.SourcesPanel" |
| 10 }, | 10 }, |
| 11 { | 11 { |
| 12 "type": "@WebInspector.ContextMenu.Provider", | 12 "type": "@UI.ContextMenu.Provider", |
| 13 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati
on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest", "WebInspector.U
ISourceCodeFrame"], | 13 "contextTypes": ["Workspace.UISourceCode", "Workspace.UILocation", "
SDK.RemoteObject", "SDK.NetworkRequest", "Sources.UISourceCodeFrame"], |
| 14 "className": "WebInspector.SourcesPanel" | 14 "className": "Sources.SourcesPanel" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "type": "@WebInspector.ActionDelegate", | 17 "type": "@UI.ActionDelegate", |
| 18 "category": "Debugger", | 18 "category": "Debugger", |
| 19 "actionId": "debugger.toggle-pause", | 19 "actionId": "debugger.toggle-pause", |
| 20 "iconClass": "largeicon-pause", | 20 "iconClass": "largeicon-pause", |
| 21 "toggledIconClass": "largeicon-resume", | 21 "toggledIconClass": "largeicon-resume", |
| 22 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", | 22 "className": "Sources.SourcesPanel.RevealingActionDelegate", |
| 23 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut
Registry.ForwardedShortcut"], | 23 "contextTypes": ["Sources.SourcesPanel", "UI.ShortcutRegistry.Forwar
dedShortcut"], |
| 24 "options": [ | 24 "options": [ |
| 25 { "value": true, "title": "Pause script execution" }, | 25 { "value": true, "title": "Pause script execution" }, |
| 26 { "value": false, "title": "Resume script execution" } | 26 { "value": false, "title": "Resume script execution" } |
| 27 ], | 27 ], |
| 28 "bindings": [ | 28 "bindings": [ |
| 29 { | 29 { |
| 30 "platform": "windows,linux", | 30 "platform": "windows,linux", |
| 31 "shortcut": "F8 Ctrl+\\" | 31 "shortcut": "F8 Ctrl+\\" |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 "platform": "mac", | 34 "platform": "mac", |
| 35 "shortcut": "F8 Meta+\\" | 35 "shortcut": "F8 Meta+\\" |
| 36 } | 36 } |
| 37 ] | 37 ] |
| 38 }, | 38 }, |
| 39 { | 39 { |
| 40 "type": "@WebInspector.ActionDelegate", | 40 "type": "@UI.ActionDelegate", |
| 41 "actionId": "debugger.step-over", | 41 "actionId": "debugger.step-over", |
| 42 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 42 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 43 "title": "Step over next function call", | 43 "title": "Step over next function call", |
| 44 "iconClass": "largeicon-step-over", | 44 "iconClass": "largeicon-step-over", |
| 45 "contextTypes": ["WebInspector.SourcesPanel"], | 45 "contextTypes": ["Sources.SourcesPanel"], |
| 46 "bindings": [ | 46 "bindings": [ |
| 47 { | 47 { |
| 48 "platform": "windows,linux", | 48 "platform": "windows,linux", |
| 49 "shortcut": "F10 Ctrl+'" | 49 "shortcut": "F10 Ctrl+'" |
| 50 }, | 50 }, |
| 51 { | 51 { |
| 52 "platform": "mac", | 52 "platform": "mac", |
| 53 "shortcut": "F10 Meta+'" | 53 "shortcut": "F10 Meta+'" |
| 54 } | 54 } |
| 55 ] | 55 ] |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 "type": "@WebInspector.ActionDelegate", | 58 "type": "@UI.ActionDelegate", |
| 59 "actionId": "debugger.step-into", | 59 "actionId": "debugger.step-into", |
| 60 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 60 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 61 "title": "Step into next function call", | 61 "title": "Step into next function call", |
| 62 "iconClass": "largeicon-step-in", | 62 "iconClass": "largeicon-step-in", |
| 63 "contextTypes": ["WebInspector.SourcesPanel"], | 63 "contextTypes": ["Sources.SourcesPanel"], |
| 64 "bindings": [ | 64 "bindings": [ |
| 65 { | 65 { |
| 66 "platform": "windows,linux", | 66 "platform": "windows,linux", |
| 67 "shortcut": "F11 Ctrl+;" | 67 "shortcut": "F11 Ctrl+;" |
| 68 }, | 68 }, |
| 69 { | 69 { |
| 70 "platform": "mac", | 70 "platform": "mac", |
| 71 "shortcut": "F11 Meta+;" | 71 "shortcut": "F11 Meta+;" |
| 72 } | 72 } |
| 73 ] | 73 ] |
| 74 }, | 74 }, |
| 75 { | 75 { |
| 76 "type": "@WebInspector.ActionDelegate", | 76 "type": "@UI.ActionDelegate", |
| 77 "actionId": "debugger.step-out", | 77 "actionId": "debugger.step-out", |
| 78 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 78 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 79 "title": "Step out of current function", | 79 "title": "Step out of current function", |
| 80 "iconClass": "largeicon-step-out", | 80 "iconClass": "largeicon-step-out", |
| 81 "contextTypes": ["WebInspector.SourcesPanel"], | 81 "contextTypes": ["Sources.SourcesPanel"], |
| 82 "bindings": [ | 82 "bindings": [ |
| 83 { | 83 { |
| 84 "platform": "windows,linux", | 84 "platform": "windows,linux", |
| 85 "shortcut": "Shift+F11 Shift+Ctrl+;" | 85 "shortcut": "Shift+F11 Shift+Ctrl+;" |
| 86 }, | 86 }, |
| 87 { | 87 { |
| 88 "platform": "mac", | 88 "platform": "mac", |
| 89 "shortcut": "Shift+F11 Shift+Meta+;" | 89 "shortcut": "Shift+F11 Shift+Meta+;" |
| 90 } | 90 } |
| 91 ] | 91 ] |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 "type": "@WebInspector.ActionDelegate", | 94 "type": "@UI.ActionDelegate", |
| 95 "actionId": "debugger.run-snippet", | 95 "actionId": "debugger.run-snippet", |
| 96 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 96 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 97 "title": "Run snippet", | 97 "title": "Run snippet", |
| 98 "iconClass": "largeicon-play", | 98 "iconClass": "largeicon-play", |
| 99 "contextTypes": ["WebInspector.SourcesPanel"], | 99 "contextTypes": ["Sources.SourcesPanel"], |
| 100 "bindings": [ | 100 "bindings": [ |
| 101 { | 101 { |
| 102 "platform": "windows,linux", | 102 "platform": "windows,linux", |
| 103 "shortcut": "Ctrl+Enter" | 103 "shortcut": "Ctrl+Enter" |
| 104 }, | 104 }, |
| 105 { | 105 { |
| 106 "platform": "mac", | 106 "platform": "mac", |
| 107 "shortcut": "Meta+Enter" | 107 "shortcut": "Meta+Enter" |
| 108 } | 108 } |
| 109 ] | 109 ] |
| 110 }, | 110 }, |
| 111 { | 111 { |
| 112 "type": "@WebInspector.ActionDelegate", | 112 "type": "@UI.ActionDelegate", |
| 113 "actionId": "sources.search.toggle", | 113 "actionId": "sources.search.toggle", |
| 114 "title": "Search all files", | 114 "title": "Search all files", |
| 115 "className": "WebInspector.AdvancedSearchView.ActionDelegate", | 115 "className": "Sources.AdvancedSearchView.ActionDelegate", |
| 116 "category": "DevTools", | 116 "category": "DevTools", |
| 117 "bindings": [ | 117 "bindings": [ |
| 118 { | 118 { |
| 119 "platform": "mac", | 119 "platform": "mac", |
| 120 "shortcut": "Meta+Alt+F" | 120 "shortcut": "Meta+Alt+F" |
| 121 }, | 121 }, |
| 122 { | 122 { |
| 123 "platform": "windows,linux", | 123 "platform": "windows,linux", |
| 124 "shortcut": "Ctrl+Shift+F" | 124 "shortcut": "Ctrl+Shift+F" |
| 125 } | 125 } |
| 126 ] | 126 ] |
| 127 }, | 127 }, |
| 128 { | 128 { |
| 129 "type": "@WebInspector.ActionDelegate", | 129 "type": "@UI.ActionDelegate", |
| 130 "category": "Debugger", | 130 "category": "Debugger", |
| 131 "actionId": "debugger.toggle-breakpoints-active", | 131 "actionId": "debugger.toggle-breakpoints-active", |
| 132 "iconClass": "largeicon-deactivate-breakpoints", | 132 "iconClass": "largeicon-deactivate-breakpoints", |
| 133 "toggledIconClass": "largeicon-activate-breakpoints", | 133 "toggledIconClass": "largeicon-activate-breakpoints", |
| 134 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 134 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 135 "contextTypes": ["WebInspector.SourcesPanel"], | 135 "contextTypes": ["Sources.SourcesPanel"], |
| 136 "options": [ | 136 "options": [ |
| 137 { "value": true, "title": "Deactivate breakpoints" }, | 137 { "value": true, "title": "Deactivate breakpoints" }, |
| 138 { "value": false, "title": "Activate breakpoints" } | 138 { "value": false, "title": "Activate breakpoints" } |
| 139 ], | 139 ], |
| 140 "bindings": [ | 140 "bindings": [ |
| 141 { | 141 { |
| 142 "platform": "windows,linux", | 142 "platform": "windows,linux", |
| 143 "shortcut": "Ctrl+F8" | 143 "shortcut": "Ctrl+F8" |
| 144 }, | 144 }, |
| 145 { | 145 { |
| 146 "platform": "mac", | 146 "platform": "mac", |
| 147 "shortcut": "Meta+F8" | 147 "shortcut": "Meta+F8" |
| 148 } | 148 } |
| 149 ] | 149 ] |
| 150 }, | 150 }, |
| 151 { | 151 { |
| 152 "type": "@WebInspector.ActionDelegate", | 152 "type": "@UI.ActionDelegate", |
| 153 "actionId": "sources.add-to-watch", | 153 "actionId": "sources.add-to-watch", |
| 154 "className": "WebInspector.WatchExpressionsSidebarPane", | 154 "className": "Sources.WatchExpressionsSidebarPane", |
| 155 "title": "Add selected text to watches", | 155 "title": "Add selected text to watches", |
| 156 "contextTypes": ["WebInspector.UISourceCodeFrame"], | 156 "contextTypes": ["Sources.UISourceCodeFrame"], |
| 157 "bindings": [ | 157 "bindings": [ |
| 158 { | 158 { |
| 159 "shortcut": "Ctrl+Shift+A'" | 159 "shortcut": "Ctrl+Shift+A'" |
| 160 } | 160 } |
| 161 ] | 161 ] |
| 162 }, | 162 }, |
| 163 { | 163 { |
| 164 "type": "@WebInspector.ContextMenu.Provider", | 164 "type": "@UI.ContextMenu.Provider", |
| 165 "contextTypes": ["WebInspector.CodeMirrorTextEditor"], | 165 "contextTypes": ["TextEditor.CodeMirrorTextEditor"], |
| 166 "className": "WebInspector.WatchExpressionsSidebarPane" | 166 "className": "Sources.WatchExpressionsSidebarPane" |
| 167 }, | 167 }, |
| 168 { | 168 { |
| 169 "type": "@WebInspector.ActionDelegate", | 169 "type": "@UI.ActionDelegate", |
| 170 "actionId": "debugger.evaluate-selection", | 170 "actionId": "debugger.evaluate-selection", |
| 171 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", | 171 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 172 "title": "Evaluate in console", | 172 "title": "Evaluate in console", |
| 173 "contextTypes": ["WebInspector.UISourceCodeFrame"], | 173 "contextTypes": ["Sources.UISourceCodeFrame"], |
| 174 "bindings": [ | 174 "bindings": [ |
| 175 { | 175 { |
| 176 "shortcut": "Ctrl+E'" | 176 "shortcut": "Ctrl+E'" |
| 177 } | 177 } |
| 178 ] | 178 ] |
| 179 }, | 179 }, |
| 180 { | 180 { |
| 181 "type": "context-menu-item", | 181 "type": "context-menu-item", |
| 182 "location": "mainMenu/navigate", | 182 "location": "mainMenu/navigate", |
| 183 "actionId": "sources.search.toggle" | 183 "actionId": "sources.search.toggle" |
| 184 }, | 184 }, |
| 185 { | 185 { |
| 186 "type": "context-menu-item", | 186 "type": "context-menu-item", |
| 187 "location": "navigatorMenu/navigate", | 187 "location": "navigatorMenu/navigate", |
| 188 "actionId": "sources.go-to-source" | 188 "actionId": "sources.go-to-source" |
| 189 }, | 189 }, |
| 190 { | 190 { |
| 191 "type": "@WebInspector.Revealer", | 191 "type": "@Common.Revealer", |
| 192 "contextTypes": ["WebInspector.UILocation"], | 192 "contextTypes": ["Workspace.UILocation"], |
| 193 "className": "WebInspector.SourcesPanel.UILocationRevealer" | 193 "className": "Sources.SourcesPanel.UILocationRevealer" |
| 194 }, | 194 }, |
| 195 { | 195 { |
| 196 "type": "@WebInspector.Revealer", | 196 "type": "@Common.Revealer", |
| 197 "contextTypes": ["WebInspector.DebuggerModel.Location"], | 197 "contextTypes": ["SDK.DebuggerModel.Location"], |
| 198 "className": "WebInspector.SourcesPanel.DebuggerLocationRevealer" | 198 "className": "Sources.SourcesPanel.DebuggerLocationRevealer" |
| 199 }, | 199 }, |
| 200 { | 200 { |
| 201 "type": "@WebInspector.Revealer", | 201 "type": "@Common.Revealer", |
| 202 "contextTypes": ["WebInspector.UISourceCode"], | 202 "contextTypes": ["Workspace.UISourceCode"], |
| 203 "className": "WebInspector.SourcesPanel.UISourceCodeRevealer" | 203 "className": "Sources.SourcesPanel.UISourceCodeRevealer" |
| 204 }, | 204 }, |
| 205 { | 205 { |
| 206 "type": "@WebInspector.Revealer", | 206 "type": "@Common.Revealer", |
| 207 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 207 "contextTypes": ["SDK.DebuggerPausedDetails"], |
| 208 "className": "WebInspector.SourcesPanel.DebuggerPausedDetailsReveale
r" | 208 "className": "Sources.SourcesPanel.DebuggerPausedDetailsRevealer" |
| 209 }, | 209 }, |
| 210 { | 210 { |
| 211 "type": "@WebInspector.SourcesView.EditorAction", | 211 "type": "@Sources.SourcesView.EditorAction", |
| 212 "className": "WebInspector.InplaceFormatterEditorAction" | 212 "className": "Sources.InplaceFormatterEditorAction" |
| 213 }, | 213 }, |
| 214 { | 214 { |
| 215 "type": "@WebInspector.SourcesView.EditorAction", | 215 "type": "@Sources.SourcesView.EditorAction", |
| 216 "className": "WebInspector.ScriptFormatterEditorAction" | 216 "className": "Sources.ScriptFormatterEditorAction" |
| 217 }, | 217 }, |
| 218 { | 218 { |
| 219 "type": "view", | 219 "type": "view", |
| 220 "location": "navigator-view", | 220 "location": "navigator-view", |
| 221 "id": "navigator-sources", | 221 "id": "navigator-sources", |
| 222 "title": "Sources", | 222 "title": "Sources", |
| 223 "order": 1, | 223 "order": 1, |
| 224 "persistence": "permanent", | 224 "persistence": "permanent", |
| 225 "className": "WebInspector.SourcesNavigatorView", | 225 "className": "Sources.SourcesNavigatorView", |
| 226 "experiment": "!persistence2" | 226 "experiment": "!persistence2" |
| 227 }, | 227 }, |
| 228 { | 228 { |
| 229 "type": "view", | 229 "type": "view", |
| 230 "location": "navigator-view", | 230 "location": "navigator-view", |
| 231 "id": "navigator-network", | 231 "id": "navigator-network", |
| 232 "title": "Network", | 232 "title": "Network", |
| 233 "order": 2, | 233 "order": 2, |
| 234 "persistence": "permanent", | 234 "persistence": "permanent", |
| 235 "className": "WebInspector.NetworkNavigatorView", | 235 "className": "Sources.NetworkNavigatorView", |
| 236 "experiment": "persistence2" | 236 "experiment": "persistence2" |
| 237 }, | 237 }, |
| 238 { | 238 { |
| 239 "type": "view", | 239 "type": "view", |
| 240 "location": "navigator-view", | 240 "location": "navigator-view", |
| 241 "id": "navigator-files", | 241 "id": "navigator-files", |
| 242 "title": "Filesystem", | 242 "title": "Filesystem", |
| 243 "order": 3, | 243 "order": 3, |
| 244 "persistence": "permanent", | 244 "persistence": "permanent", |
| 245 "className": "WebInspector.FilesNavigatorView", | 245 "className": "Sources.FilesNavigatorView", |
| 246 "experiment": "persistence2" | 246 "experiment": "persistence2" |
| 247 }, | 247 }, |
| 248 { | 248 { |
| 249 "type": "view", | 249 "type": "view", |
| 250 "location": "navigator-view", | 250 "location": "navigator-view", |
| 251 "id": "navigator-contentScripts", | 251 "id": "navigator-contentScripts", |
| 252 "title": "Content scripts", | 252 "title": "Content scripts", |
| 253 "order": 4, | 253 "order": 4, |
| 254 "persistence": "permanent", | 254 "persistence": "permanent", |
| 255 "className": "WebInspector.ContentScriptsNavigatorView" | 255 "className": "Sources.ContentScriptsNavigatorView" |
| 256 }, | 256 }, |
| 257 { | 257 { |
| 258 "type": "view", | 258 "type": "view", |
| 259 "location": "navigator-view", | 259 "location": "navigator-view", |
| 260 "id": "navigator-snippets", | 260 "id": "navigator-snippets", |
| 261 "title": "Snippets", | 261 "title": "Snippets", |
| 262 "order": 5, | 262 "order": 5, |
| 263 "persistence": "permanent", | 263 "persistence": "permanent", |
| 264 "className": "WebInspector.SnippetsNavigatorView" | 264 "className": "Sources.SnippetsNavigatorView" |
| 265 }, | 265 }, |
| 266 { | 266 { |
| 267 "type": "@WebInspector.NavigatorView", | 267 "type": "@Sources.NavigatorView", |
| 268 "viewId": "navigator-sources", | 268 "viewId": "navigator-sources", |
| 269 "className": "WebInspector.SourcesNavigatorView", | 269 "className": "Sources.SourcesNavigatorView", |
| 270 "experiment": "!persistence2" | 270 "experiment": "!persistence2" |
| 271 }, | 271 }, |
| 272 { | 272 { |
| 273 "type": "@WebInspector.NavigatorView", | 273 "type": "@Sources.NavigatorView", |
| 274 "viewId": "navigator-network", | 274 "viewId": "navigator-network", |
| 275 "className": "WebInspector.NetworkNavigatorView", | 275 "className": "Sources.NetworkNavigatorView", |
| 276 "experiment": "persistence2" | 276 "experiment": "persistence2" |
| 277 }, | 277 }, |
| 278 { | 278 { |
| 279 "type": "@WebInspector.NavigatorView", | 279 "type": "@Sources.NavigatorView", |
| 280 "viewId": "navigator-files", | 280 "viewId": "navigator-files", |
| 281 "className": "WebInspector.FilesNavigatorView", | 281 "className": "Sources.FilesNavigatorView", |
| 282 "experiment": "persistence2" | 282 "experiment": "persistence2" |
| 283 }, | 283 }, |
| 284 { | 284 { |
| 285 "type": "@WebInspector.NavigatorView", | 285 "type": "@Sources.NavigatorView", |
| 286 "viewId": "navigator-contentScripts", | 286 "viewId": "navigator-contentScripts", |
| 287 "className": "WebInspector.ContentScriptsNavigatorView" | 287 "className": "Sources.ContentScriptsNavigatorView" |
| 288 }, | 288 }, |
| 289 { | 289 { |
| 290 "type": "@WebInspector.NavigatorView", | 290 "type": "@Sources.NavigatorView", |
| 291 "viewId": "navigator-snippets", | 291 "viewId": "navigator-snippets", |
| 292 "className": "WebInspector.SnippetsNavigatorView" | 292 "className": "Sources.SnippetsNavigatorView" |
| 293 }, | 293 }, |
| 294 { | 294 { |
| 295 "type": "@WebInspector.ActionDelegate", | 295 "type": "@UI.ActionDelegate", |
| 296 "actionId": "sources.go-to-source", | 296 "actionId": "sources.go-to-source", |
| 297 "title": "Go to file...", | 297 "title": "Go to file...", |
| 298 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", | 298 "className": "Sources.SourcesPanel.RevealingActionDelegate", |
| 299 "order": 100, | 299 "order": 100, |
| 300 "bindings": [ | 300 "bindings": [ |
| 301 { | 301 { |
| 302 "platform": "mac", | 302 "platform": "mac", |
| 303 "shortcut": "Meta+P Meta+O" | 303 "shortcut": "Meta+P Meta+O" |
| 304 }, | 304 }, |
| 305 { | 305 { |
| 306 "platform": "windows,linux", | 306 "platform": "windows,linux", |
| 307 "shortcut": "Ctrl+P Ctrl+O" | 307 "shortcut": "Ctrl+P Ctrl+O" |
| 308 } | 308 } |
| 309 ] | 309 ] |
| 310 }, | 310 }, |
| 311 { | 311 { |
| 312 "type": "@WebInspector.ActionDelegate", | 312 "type": "@UI.ActionDelegate", |
| 313 "actionId": "sources.switch-file", | 313 "actionId": "sources.switch-file", |
| 314 "className": "WebInspector.SourcesView.SwitchFileActionDelegate", | 314 "className": "Sources.SourcesView.SwitchFileActionDelegate", |
| 315 "contextTypes": ["WebInspector.SourcesView"], | 315 "contextTypes": ["Sources.SourcesView"], |
| 316 "bindings": [ | 316 "bindings": [ |
| 317 { | 317 { |
| 318 "shortcut": "Alt+O" | 318 "shortcut": "Alt+O" |
| 319 } | 319 } |
| 320 ] | 320 ] |
| 321 }, | 321 }, |
| 322 { | 322 { |
| 323 "type": "setting", | 323 "type": "setting", |
| 324 "settingName": "navigatorGroupByFolder", | 324 "settingName": "navigatorGroupByFolder", |
| 325 "settingType": "boolean", | 325 "settingType": "boolean", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 "settingType": "boolean", | 402 "settingType": "boolean", |
| 403 "defaultValue": true | 403 "defaultValue": true |
| 404 }, | 404 }, |
| 405 { | 405 { |
| 406 "type": "view", | 406 "type": "view", |
| 407 "location": "drawer-view", | 407 "location": "drawer-view", |
| 408 "id": "sources.search", | 408 "id": "sources.search", |
| 409 "title": "Search", | 409 "title": "Search", |
| 410 "persistence": "closeable", | 410 "persistence": "closeable", |
| 411 "order": 100, | 411 "order": 100, |
| 412 "className": "WebInspector.AdvancedSearchView" | 412 "className": "Sources.AdvancedSearchView" |
| 413 }, | 413 }, |
| 414 { | 414 { |
| 415 "type": "view", | 415 "type": "view", |
| 416 "location": "drawer-view", | 416 "location": "drawer-view", |
| 417 "id": "sources.history", | 417 "id": "sources.history", |
| 418 "title": "History", | 418 "title": "History", |
| 419 "persistence": "transient", | 419 "persistence": "transient", |
| 420 "className": "WebInspector.RevisionHistoryView" | 420 "className": "Sources.RevisionHistoryView" |
| 421 }, | 421 }, |
| 422 { | 422 { |
| 423 "type": "view", | 423 "type": "view", |
| 424 "location": "drawer-view", | 424 "location": "drawer-view", |
| 425 "id": "sources.quick", | 425 "id": "sources.quick", |
| 426 "title": "Quick source", | 426 "title": "Quick source", |
| 427 "persistence": "closeable", | 427 "persistence": "closeable", |
| 428 "order": 1000, | 428 "order": 1000, |
| 429 "className": "WebInspector.SourcesPanel.WrapperView" | 429 "className": "Sources.SourcesPanel.WrapperView" |
| 430 }, | 430 }, |
| 431 { | 431 { |
| 432 "type": "@WebInspector.ActionDelegate", | 432 "type": "@UI.ActionDelegate", |
| 433 "category": "Sources", | 433 "category": "Sources", |
| 434 "actionId": "sources.close-all", | 434 "actionId": "sources.close-all", |
| 435 "className": "WebInspector.SourcesView.CloseAllActionDelegate", | 435 "className": "Sources.SourcesView.CloseAllActionDelegate", |
| 436 "title": "Close All" | 436 "title": "Close All" |
| 437 }, | 437 }, |
| 438 { | 438 { |
| 439 "type": "@WebInspector.ViewLocationResolver", | 439 "type": "@UI.ViewLocationResolver", |
| 440 "name": "navigator-view", | 440 "name": "navigator-view", |
| 441 "className": "WebInspector.SourcesPanel" | 441 "className": "Sources.SourcesPanel" |
| 442 }, | 442 }, |
| 443 { | 443 { |
| 444 "type": "@WebInspector.ViewLocationResolver", | 444 "type": "@UI.ViewLocationResolver", |
| 445 "name": "sources-sidebar", | 445 "name": "sources-sidebar", |
| 446 "className": "WebInspector.SourcesPanel" | 446 "className": "Sources.SourcesPanel" |
| 447 }, | 447 }, |
| 448 { | 448 { |
| 449 "type": "view", | 449 "type": "view", |
| 450 "location": "sources-sidebar", | 450 "location": "sources-sidebar", |
| 451 "id": "sources.xhrBreakpoints", | 451 "id": "sources.xhrBreakpoints", |
| 452 "title": "XHR Breakpoints", | 452 "title": "XHR Breakpoints", |
| 453 "order": 5, | 453 "order": 5, |
| 454 "hasToolbar": "true", | 454 "hasToolbar": "true", |
| 455 "persistence": "permanent", | 455 "persistence": "permanent", |
| 456 "className": "WebInspector.XHRBreakpointsSidebarPane" | 456 "className": "Sources.XHRBreakpointsSidebarPane" |
| 457 }, | 457 }, |
| 458 { | 458 { |
| 459 "type": "view", | 459 "type": "view", |
| 460 "location": "sources-sidebar", | 460 "location": "sources-sidebar", |
| 461 "id": "sources.domBreakpoints", | 461 "id": "sources.domBreakpoints", |
| 462 "title": "DOM Breakpoints", | 462 "title": "DOM Breakpoints", |
| 463 "order": 7, | 463 "order": 7, |
| 464 "persistence": "permanent", | 464 "persistence": "permanent", |
| 465 "factoryName": "WebInspector.DOMBreakpointsSidebarPane.Proxy" | 465 "factoryName": "Components.DOMBreakpointsSidebarPane.Proxy" |
| 466 }, | 466 }, |
| 467 { | 467 { |
| 468 "type": "view", | 468 "type": "view", |
| 469 "location": "sources-sidebar", | 469 "location": "sources-sidebar", |
| 470 "id": "sources.globalListeners", | 470 "id": "sources.globalListeners", |
| 471 "title": "Global Listeners", | 471 "title": "Global Listeners", |
| 472 "order": 8, | 472 "order": 8, |
| 473 "hasToolbar": "true", | 473 "hasToolbar": "true", |
| 474 "persistence": "permanent", | 474 "persistence": "permanent", |
| 475 "className": "WebInspector.ObjectEventListenersSidebarPane" | 475 "className": "Sources.ObjectEventListenersSidebarPane" |
| 476 }, | 476 }, |
| 477 { | 477 { |
| 478 "type": "view", | 478 "type": "view", |
| 479 "location": "sources-sidebar", | 479 "location": "sources-sidebar", |
| 480 "id": "sources.eventListenerBreakpoints", | 480 "id": "sources.eventListenerBreakpoints", |
| 481 "title": "Event Listener Breakpoints", | 481 "title": "Event Listener Breakpoints", |
| 482 "order": 9, | 482 "order": 9, |
| 483 "persistence": "permanent", | 483 "persistence": "permanent", |
| 484 "className": "WebInspector.EventListenerBreakpointsSidebarPane" | 484 "className": "Sources.EventListenerBreakpointsSidebarPane" |
| 485 }, | 485 }, |
| 486 { | 486 { |
| 487 "type": "view", | 487 "type": "view", |
| 488 "id": "sources.threads", | 488 "id": "sources.threads", |
| 489 "title": "Threads", | 489 "title": "Threads", |
| 490 "persistence": "permanent", | 490 "persistence": "permanent", |
| 491 "className": "WebInspector.ThreadsSidebarPane" | 491 "className": "Sources.ThreadsSidebarPane" |
| 492 }, | 492 }, |
| 493 { | 493 { |
| 494 "type": "view", | 494 "type": "view", |
| 495 "id": "sources.scopeChain", | 495 "id": "sources.scopeChain", |
| 496 "title": "Scope", | 496 "title": "Scope", |
| 497 "persistence": "permanent", | 497 "persistence": "permanent", |
| 498 "className": "WebInspector.ScopeChainSidebarPane" | 498 "className": "Sources.ScopeChainSidebarPane" |
| 499 }, | 499 }, |
| 500 { | 500 { |
| 501 "type": "view", | 501 "type": "view", |
| 502 "id": "sources.watch", | 502 "id": "sources.watch", |
| 503 "title": "Watch", | 503 "title": "Watch", |
| 504 "hasToolbar": true, | 504 "hasToolbar": true, |
| 505 "persistence": "permanent", | 505 "persistence": "permanent", |
| 506 "className": "WebInspector.WatchExpressionsSidebarPane" | 506 "className": "Sources.WatchExpressionsSidebarPane" |
| 507 }, | 507 }, |
| 508 { | 508 { |
| 509 "type": "view", | 509 "type": "view", |
| 510 "id": "sources.jsBreakpoints", | 510 "id": "sources.jsBreakpoints", |
| 511 "title": "Breakpoints", | 511 "title": "Breakpoints", |
| 512 "persistence": "permanent", | 512 "persistence": "permanent", |
| 513 "className": "WebInspector.JavaScriptBreakpointsSidebarPane" | 513 "className": "Sources.JavaScriptBreakpointsSidebarPane" |
| 514 }, | 514 }, |
| 515 { | 515 { |
| 516 "type": "@WebInspector.ContextFlavorListener", | 516 "type": "@UI.ContextFlavorListener", |
| 517 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 517 "contextTypes": ["SDK.DebuggerPausedDetails"], |
| 518 "className": "WebInspector.JavaScriptBreakpointsSidebarPane" | 518 "className": "Sources.JavaScriptBreakpointsSidebarPane" |
| 519 }, | 519 }, |
| 520 { | 520 { |
| 521 "type": "@WebInspector.ContextFlavorListener", | 521 "type": "@UI.ContextFlavorListener", |
| 522 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 522 "contextTypes": ["SDK.DebuggerPausedDetails"], |
| 523 "className": "WebInspector.XHRBreakpointsSidebarPane" | 523 "className": "Sources.XHRBreakpointsSidebarPane" |
| 524 }, | 524 }, |
| 525 { | 525 { |
| 526 "type": "@WebInspector.ContextFlavorListener", | 526 "type": "@UI.ContextFlavorListener", |
| 527 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 527 "contextTypes": ["SDK.DebuggerPausedDetails"], |
| 528 "className": "WebInspector.DOMBreakpointsSidebarPane" | 528 "className": "Components.DOMBreakpointsSidebarPane" |
| 529 }, | 529 }, |
| 530 { | 530 { |
| 531 "type": "@WebInspector.ContextFlavorListener", | 531 "type": "@UI.ContextFlavorListener", |
| 532 "contextTypes": ["WebInspector.DebuggerPausedDetails"], | 532 "contextTypes": ["SDK.DebuggerPausedDetails"], |
| 533 "className": "WebInspector.CallStackSidebarPane" | 533 "className": "Sources.CallStackSidebarPane" |
| 534 }, | 534 }, |
| 535 { | 535 { |
| 536 "type": "@WebInspector.ContextFlavorListener", | 536 "type": "@UI.ContextFlavorListener", |
| 537 "contextTypes": ["WebInspector.DebuggerModel.CallFrame"], | 537 "contextTypes": ["SDK.DebuggerModel.CallFrame"], |
| 538 "className": "WebInspector.ScopeChainSidebarPane" | 538 "className": "Sources.ScopeChainSidebarPane" |
| 539 } | 539 } |
| 540 ], | 540 ], |
| 541 "dependencies": [ | 541 "dependencies": [ |
| 542 "components", | 542 "components", |
| 543 "source_frame", | 543 "source_frame", |
| 544 "snippets", | 544 "snippets", |
| 545 "ui_lazy", | 545 "ui_lazy", |
| 546 "extensions", | 546 "extensions", |
| 547 "persistence" | 547 "persistence" |
| 548 ], | 548 ], |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 "fileBasedSearchResultsPane.css", | 592 "fileBasedSearchResultsPane.css", |
| 593 "navigatorTree.css", | 593 "navigatorTree.css", |
| 594 "navigatorView.css", | 594 "navigatorView.css", |
| 595 "revisionHistory.css", | 595 "revisionHistory.css", |
| 596 "serviceWorkersSidebar.css", | 596 "serviceWorkersSidebar.css", |
| 597 "sourcesPanel.css", | 597 "sourcesPanel.css", |
| 598 "sourcesSearch.css", | 598 "sourcesSearch.css", |
| 599 "sourcesView.css" | 599 "sourcesView.css" |
| 600 ] | 600 ] |
| 601 } | 601 } |
| OLD | NEW |