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

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

Issue 768773002: Revert of DevTools: Migrate elements panel undo/redo shortcuts to declarative actions. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/elements/ElementsPanel.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": "elements", 5 "name": "elements",
6 "title": "Elements", 6 "title": "Elements",
7 "order": 0, 7 "order": 0,
8 "className": "WebInspector.ElementsPanelFactory" 8 "className": "WebInspector.ElementsPanelFactory"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode" , "WebInspector.DeferredDOMNode"], 12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode" , "WebInspector.DeferredDOMNode"],
13 "className": "WebInspector.ElementsPanel.ContextMenuProvider" 13 "className": "WebInspector.ElementsPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "@WebInspector.ActionDelegate",
17 "actionId": "elements.undo",
18 "className": "WebInspector.ElementsPanel.UndoActionDelegate",
19 "contextTypes": ["WebInspector.ElementsPanel"],
20 "bindings": [
21 {
22 "platform": "windows,linux",
23 "shortcut": "Ctrl+Z"
24 },
25 {
26 "platform": "mac",
27 "shortcut": "Meta+Z"
28 }
29 ]
30 },
31 {
32 "type": "@WebInspector.ActionDelegate",
33 "actionId": "elements.redo",
34 "className": "WebInspector.ElementsPanel.RedoActionDelegate",
35 "contextTypes": ["WebInspector.ElementsPanel"],
36 "bindings": [
37 {
38 "platform": "windows,linux",
39 "shortcut": "Ctrl+Y"
40 },
41 {
42 "platform": "mac",
43 "shortcut": "Meta+Shift+Z"
44 }
45 ]
46 },
47 {
48 "type": "@WebInspector.Renderer", 16 "type": "@WebInspector.Renderer",
49 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject" ], 17 "contextTypes": ["WebInspector.DOMNode", "WebInspector.RemoteObject" ],
50 "className": "WebInspector.ElementsTreeOutline.Renderer" 18 "className": "WebInspector.ElementsTreeOutline.Renderer"
51 }, 19 },
52 { 20 {
53 "type": "@WebInspector.Revealer", 21 "type": "@WebInspector.Revealer",
54 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo de", "WebInspector.RemoteObject" ], 22 "contextTypes": ["WebInspector.DOMNode", "WebInspector.DeferredDOMNo de", "WebInspector.RemoteObject" ],
55 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" 23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer"
56 }, 24 },
57 { 25 {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "ElementsPanel.js", 81 "ElementsPanel.js",
114 "AnimationsSidebarPane.js" 82 "AnimationsSidebarPane.js"
115 ], 83 ],
116 "stylesheets": [ 84 "stylesheets": [
117 "breadcrumbs.css", 85 "breadcrumbs.css",
118 "elementsPanel.css", 86 "elementsPanel.css",
119 "elementsTreeOutline.css", 87 "elementsTreeOutline.css",
120 "spectrum.css" 88 "spectrum.css"
121 ] 89 ]
122 } 90 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/ElementsPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698