Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(953)

Side by Side Diff: Source/devtools/front_end/sources/module.json

Issue 1302323005: Devtools UI: Add shortcut for activating/deactivating breakpoints (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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"
pfeldman 2015/08/28 23:08:44 This would also need to work from the inspected pa
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698