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

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

Issue 1273313002: DevTools: introduce dom markers, decorate hidden, forced state and breakpoint elements using marker… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: for landing Created 5 years, 4 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
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 {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 }, 101 },
102 { 102 {
103 "type": "@WebInspector.ActionDelegate", 103 "type": "@WebInspector.ActionDelegate",
104 "actionId": "elements.edit-as-html", 104 "actionId": "elements.edit-as-html",
105 "className": "WebInspector.ElementsActionDelegate", 105 "className": "WebInspector.ElementsActionDelegate",
106 "bindings": [ 106 "bindings": [
107 { 107 {
108 "shortcut": "F2" 108 "shortcut": "F2"
109 } 109 }
110 ] 110 ]
111 },
112 {
113 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator",
114 "className": "WebInspector.ElementsPanel.PseudoStateMarkerDecorator" ,
115 "marker": "pseudo-state-marker"
116 },
117 {
118 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator",
119 "className": "WebInspector.ElementsPanel.HiddenMarkerDecorator",
120 "marker": "hidden-marker"
111 } 121 }
112 ], 122 ],
113 "dependencies": [ 123 "dependencies": [
114 "components", 124 "components",
115 "extensions" 125 "extensions"
116 ], 126 ],
117 "scripts": [ 127 "scripts": [
118 "BezierUI.js", 128 "BezierUI.js",
119 "StylesPopoverHelper.js", 129 "StylesPopoverHelper.js",
120 "BezierEditor.js", 130 "BezierEditor.js",
(...skipping 16 matching lines...) Expand all
137 ], 147 ],
138 "resources": [ 148 "resources": [
139 "bezierEditor.css", 149 "bezierEditor.css",
140 "breadcrumbs.css", 150 "breadcrumbs.css",
141 "computedStyleSidebarPane.css", 151 "computedStyleSidebarPane.css",
142 "elementsPanel.css", 152 "elementsPanel.css",
143 "elementsTreeOutline.css", 153 "elementsTreeOutline.css",
144 "spectrum.css" 154 "spectrum.css"
145 ] 155 ]
146 } 156 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/ElementsTreeOutline.js ('k') | Source/devtools/front_end/sdk/CSSStyleModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698