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

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

Issue 2728543002: DevTools: refactor Common.Renderer for DOM nodes (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.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": "view", 4 "type": "view",
5 "location": "panel", 5 "location": "panel",
6 "id": "elements", 6 "id": "elements",
7 "title": "Elements", 7 "title": "Elements",
8 "order": 10, 8 "order": 10,
9 "className": "Elements.ElementsPanel" 9 "className": "Elements.ElementsPanel"
10 }, 10 },
11 { 11 {
12 "type": "@UI.ContextMenu.Provider", 12 "type": "@UI.ContextMenu.Provider",
13 "contextTypes": [ 13 "contextTypes": [
14 "SDK.RemoteObject", 14 "SDK.RemoteObject",
15 "SDK.DOMNode", 15 "SDK.DOMNode",
16 "SDK.DeferredDOMNode" 16 "SDK.DeferredDOMNode"
17 ], 17 ],
18 "className": "Elements.ElementsPanel.ContextMenuProvider" 18 "className": "Elements.ElementsPanel.ContextMenuProvider"
19 }, 19 },
20 { 20 {
21 "type": "@Common.Renderer", 21 "type": "@Common.NodeRenderer",
22 "contextTypes": [ 22 "contextTypes": [
23 "SDK.DOMNode", 23 "SDK.DOMNode",
24 "SDK.RemoteObject" 24 "SDK.DeferredDOMNode"
chenwilliam 2017/03/01 01:59:08 Don't know why SDK.DeferredDOMNode wasn't included
25 ], 25 ],
26 "className": "Elements.ElementsTreeOutline.Renderer" 26 "className": "Elements.ElementsTreeOutline.NodeRenderer"
27 }, 27 },
28 { 28 {
29 "type": "@Common.Revealer", 29 "type": "@Common.Revealer",
30 "contextTypes": [ 30 "contextTypes": [
31 "SDK.DOMNode", 31 "SDK.DOMNode",
32 "SDK.DeferredDOMNode", 32 "SDK.DeferredDOMNode",
33 "SDK.RemoteObject" 33 "SDK.RemoteObject"
34 ], 34 ],
35 "className": "Elements.ElementsPanel.DOMNodeRevealer" 35 "className": "Elements.ElementsPanel.DOMNodeRevealer"
36 }, 36 },
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 ], 279 ],
280 "resources": [ 280 "resources": [
281 "breadcrumbs.css", 281 "breadcrumbs.css",
282 "computedStyleSidebarPane.css", 282 "computedStyleSidebarPane.css",
283 "elementsPanel.css", 283 "elementsPanel.css",
284 "elementsTreeOutline.css", 284 "elementsTreeOutline.css",
285 "platformFontsWidget.css", 285 "platformFontsWidget.css",
286 "stylesSectionTree.css" 286 "stylesSectionTree.css"
287 ] 287 ]
288 } 288 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698