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

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

Issue 385173007: DevTools: move UI components to target observers in preparation to early UI initialization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "elements", 5 "name": "elements",
6 "title": "Elements", 6 "title": "Elements",
7 "order": 0, 7 "order": 0,
8 "className": "WebInspector.ElementsPanel" 8 "className": "WebInspector.ElementsPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode" ], 12 "contextTypes": ["WebInspector.RemoteObject", "WebInspector.DOMNode" ],
13 "className": "WebInspector.ElementsPanel.ContextMenuProvider" 13 "className": "WebInspector.ElementsPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "drawer-view",
17 "name": "rendering",
18 "title": "Rendering",
19 "order": "11",
20 "className": "WebInspector.RenderingOptionsView"
21 },
22 {
23 "type": "@WebInspector.Renderer", 16 "type": "@WebInspector.Renderer",
24 "contextTypes": ["WebInspector.DOMNode"], 17 "contextTypes": ["WebInspector.DOMNode"],
25 "className": "WebInspector.ElementsTreeOutline.Renderer" 18 "className": "WebInspector.ElementsTreeOutline.Renderer"
26 }, 19 },
27 { 20 {
28 "type": "@WebInspector.Revealer", 21 "type": "@WebInspector.Revealer",
29 "contextTypes": ["WebInspector.DOMNode"], 22 "contextTypes": ["WebInspector.DOMNode"],
30 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" 23 "className": "WebInspector.ElementsPanel.DOMNodeRevealer"
31 }, 24 },
32 { 25 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 { 64 {
72 "type": "ui-setting", 65 "type": "ui-setting",
73 "section": "Elements", 66 "section": "Elements",
74 "title": "Show rulers", 67 "title": "Show rulers",
75 "settingName": "showMetricsRulers", 68 "settingName": "showMetricsRulers",
76 "settingType": "checkbox" 69 "settingType": "checkbox"
77 } 70 }
78 ], 71 ],
79 "scripts": [ "ElementsPanel.js" ] 72 "scripts": [ "ElementsPanel.js" ]
80 } 73 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/RenderingOptionsView.js ('k') | Source/devtools/front_end/inspector.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698