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

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

Issue 458753003: Revert of DevTools: Introduce module initializers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | 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 {
(...skipping 21 matching lines...) Expand all
32 "contextTypes": ["WebInspector.RemoteObject"], 32 "contextTypes": ["WebInspector.RemoteObject"],
33 "className": "WebInspector.ElementsPanel.NodeRemoteObjectInspector" 33 "className": "WebInspector.ElementsPanel.NodeRemoteObjectInspector"
34 }, 34 },
35 { 35 {
36 "type": "ui-setting", 36 "type": "ui-setting",
37 "section": "Elements", 37 "section": "Elements",
38 "title": "Color format:", 38 "title": "Color format:",
39 "settingName": "colorFormat", 39 "settingName": "colorFormat",
40 "settingType": "select", 40 "settingType": "select",
41 "options": [ 41 "options": [
42 ["As authored", "original"], 42 [ "As authored", "original" ],
43 ["HEX: #DAC0DE", "hex", true], 43 [ "HEX: #DAC0DE", "hex", true ],
44 ["RGB: rgb(128, 255, 255)", "rgb", true], 44 [ "RGB: rgb(128, 255, 255)", "rgb", true ],
45 ["HSL: hsl(300, 80%, 90%)", "hsl", true] 45 [ "HSL: hsl(300, 80%, 90%)", "hsl", true ]
46 ] 46 ]
47 }, 47 },
48 { 48 {
49 "type": "ui-setting", 49 "type": "ui-setting",
50 "section": "Elements", 50 "section": "Elements",
51 "title": "Show user agent styles", 51 "title": "Show user agent styles",
52 "settingName": "showUserAgentStyles", 52 "settingName": "showUserAgentStyles",
53 "settingType": "checkbox" 53 "settingType": "checkbox"
54 }, 54 },
55 { 55 {
(...skipping 11 matching lines...) Expand all
67 "settingType": "checkbox" 67 "settingType": "checkbox"
68 }, 68 },
69 { 69 {
70 "type": "ui-setting", 70 "type": "ui-setting",
71 "section": "Elements", 71 "section": "Elements",
72 "title": "Show rulers", 72 "title": "Show rulers",
73 "settingName": "showMetricsRulers", 73 "settingName": "showMetricsRulers",
74 "settingType": "checkbox" 74 "settingType": "checkbox"
75 } 75 }
76 ], 76 ],
77 "scripts": [ 77 "scripts": [ "ElementsPanel.js" ]
78 "Spectrum.js",
79 "DOMSyntaxHighlighter.js",
80 "ElementsTreeOutline.js",
81 "EventListenersSidebarPane.js",
82 "MetricsSidebarPane.js",
83 "PlatformFontsSidebarPane.js",
84 "PropertiesSidebarPane.js",
85 "StylesSidebarPane.js",
86 "ElementsPanel.js"
87 ]
88 } 78 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/_module.js ('k') | Source/devtools/front_end/extensions/ExtensionServer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698