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

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

Issue 2482593003: DevTools: eliminate ToolbarButton.setState method; cleanup toolbar.css (Closed)
Patch Set: kill ToolbarToggle.setActive() Created 4 years, 1 month 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
OLDNEW
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": "WebInspector.SourcesPanel"
10 }, 10 },
11 { 11 {
12 "type": "@WebInspector.ContextMenu.Provider", 12 "type": "@WebInspector.ContextMenu.Provider",
13 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest", "WebInspector.U ISourceCodeFrame"], 13 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest", "WebInspector.U ISourceCodeFrame"],
14 "className": "WebInspector.SourcesPanel" 14 "className": "WebInspector.SourcesPanel"
15 }, 15 },
16 { 16 {
17 "type": "@WebInspector.ActionDelegate", 17 "type": "@WebInspector.ActionDelegate",
18 "category": "Debugger", 18 "category": "Debugger",
19 "actionId": "debugger.toggle-pause", 19 "actionId": "debugger.toggle-pause",
20 "iconClass": "pause-toolbar-item", 20 "iconClass": "pause-toolbar-item",
21 "toggledIconClass": "resume-toolbar-item",
21 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", 22 "className": "WebInspector.SourcesPanel.RevealingActionDelegate",
22 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"], 23 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"],
23 "options": [ 24 "options": [
24 { "value": true, "title": "Pause script execution" }, 25 { "value": true, "title": "Pause script execution" },
25 { "value": false, "title": "Resume script execution" } 26 { "value": false, "title": "Resume script execution" }
26 ], 27 ],
27 "bindings": [ 28 "bindings": [
28 { 29 {
29 "platform": "windows,linux", 30 "platform": "windows,linux",
30 "shortcut": "F8 Ctrl+\\" 31 "shortcut": "F8 Ctrl+\\"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 { 122 {
122 "platform": "windows,linux", 123 "platform": "windows,linux",
123 "shortcut": "Ctrl+Shift+F" 124 "shortcut": "Ctrl+Shift+F"
124 } 125 }
125 ] 126 ]
126 }, 127 },
127 { 128 {
128 "type": "@WebInspector.ActionDelegate", 129 "type": "@WebInspector.ActionDelegate",
129 "category": "Debugger", 130 "category": "Debugger",
130 "actionId": "debugger.toggle-breakpoints-active", 131 "actionId": "debugger.toggle-breakpoints-active",
131 "iconClass": "breakpoint-toolbar-item", 132 "iconClass": "deactivate-breakpoint-toolbar-item",
133 "toggledIconClass": "breakpoint-toolbar-item",
132 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate", 134 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate",
133 "contextTypes": ["WebInspector.SourcesPanel"], 135 "contextTypes": ["WebInspector.SourcesPanel"],
134 "options": [ 136 "options": [
135 { "value": true, "title": "Deactivate breakpoints" }, 137 { "value": true, "title": "Deactivate breakpoints" },
136 { "value": false, "title": "Activate breakpoints" } 138 { "value": false, "title": "Activate breakpoints" }
137 ], 139 ],
138 "bindings": [ 140 "bindings": [
139 { 141 {
140 "platform": "windows,linux", 142 "platform": "windows,linux",
141 "shortcut": "Ctrl+F8" 143 "shortcut": "Ctrl+F8"
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 "fileBasedSearchResultsPane.css", 592 "fileBasedSearchResultsPane.css",
591 "navigatorTree.css", 593 "navigatorTree.css",
592 "navigatorView.css", 594 "navigatorView.css",
593 "revisionHistory.css", 595 "revisionHistory.css",
594 "serviceWorkersSidebar.css", 596 "serviceWorkersSidebar.css",
595 "sourcesPanel.css", 597 "sourcesPanel.css",
596 "sourcesSearch.css", 598 "sourcesSearch.css",
597 "sourcesView.css" 599 "sourcesView.css"
598 ] 600 ]
599 } 601 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698