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": 2, | 7 "order": 2, |
8 "className": "WebInspector.SourcesPanelFactory" | 8 "className": "WebInspector.SourcesPanelFactory" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", |
| 130 "actionId": "debugger.toggle-breakpoints-active", |
| 131 "iconClass": "breakpoint-toolbar-item", |
| 132 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", |
| 133 "contextTypes": ["WebInspector.SourcesPanel"], |
| 134 "bindings": [ |
| 135 { |
| 136 "platform": "windows,linux", |
| 137 "shortcut": "Ctrl+F8" |
| 138 }, |
| 139 { |
| 140 "platform": "mac", |
| 141 "shortcut": "Meta+F8" |
| 142 } |
| 143 ] |
| 144 }, |
| 145 { |
129 "type": "context-menu-item", | 146 "type": "context-menu-item", |
130 "location": "mainMenu/navigate", | 147 "location": "mainMenu/navigate", |
131 "actionId": "sources.search.toggle" | 148 "actionId": "sources.search.toggle" |
132 }, | 149 }, |
133 { | 150 { |
134 "type": "@WebInspector.Revealer", | 151 "type": "@WebInspector.Revealer", |
135 "contextTypes": ["WebInspector.UILocation"], | 152 "contextTypes": ["WebInspector.UILocation"], |
136 "className": "WebInspector.SourcesPanel.UILocationRevealer" | 153 "className": "WebInspector.SourcesPanel.UILocationRevealer" |
137 }, | 154 }, |
138 { | 155 { |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 "filteredItemSelectionDialog.css", | 350 "filteredItemSelectionDialog.css", |
334 "uiList.css", | 351 "uiList.css", |
335 "navigatorView.css", | 352 "navigatorView.css", |
336 "revisionHistory.css", | 353 "revisionHistory.css", |
337 "serviceWorkersSidebar.css", | 354 "serviceWorkersSidebar.css", |
338 "sourcesPanel.css", | 355 "sourcesPanel.css", |
339 "sourcesSearch.css", | 356 "sourcesSearch.css", |
340 "sourcesView.css" | 357 "sourcesView.css" |
341 ] | 358 ] |
342 } | 359 } |
OLD | NEW |