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

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

Issue 701153002: DevTools: [Elements] Highlight DOM updates (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Refactored UpdateInfo fill-in and their use when building titles Created 6 years, 1 month 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.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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "title": "Word wrap", 87 "title": "Word wrap",
88 "settingName": "domWordWrap", 88 "settingName": "domWordWrap",
89 "settingType": "checkbox" 89 "settingType": "checkbox"
90 }, 90 },
91 { 91 {
92 "type": "ui-setting", 92 "type": "ui-setting",
93 "section": "Elements", 93 "section": "Elements",
94 "title": "Show rulers", 94 "title": "Show rulers",
95 "settingName": "showMetricsRulers", 95 "settingName": "showMetricsRulers",
96 "settingType": "checkbox" 96 "settingType": "checkbox"
97 },
98 {
99 "type": "ui-setting",
100 "section": "Elements",
101 "title": "Highlight DOM updates",
102 "settingName": "highlightDOMUpdates",
103 "settingType": "checkbox"
97 } 104 }
98 ], 105 ],
99 "dependencies": [ 106 "dependencies": [
100 "components", 107 "components",
101 "extensions" 108 "extensions"
102 ], 109 ],
103 "scripts": [ 110 "scripts": [
104 "Spectrum.js", 111 "Spectrum.js",
105 "ElementsBreadcrumbs.js", 112 "ElementsBreadcrumbs.js",
106 "ElementsSidebarPane.js", 113 "ElementsSidebarPane.js",
107 "ElementsTreeOutline.js", 114 "ElementsTreeOutline.js",
108 "EventListenersSidebarPane.js", 115 "EventListenersSidebarPane.js",
109 "MetricsSidebarPane.js", 116 "MetricsSidebarPane.js",
110 "PlatformFontsSidebarPane.js", 117 "PlatformFontsSidebarPane.js",
111 "PropertiesSidebarPane.js", 118 "PropertiesSidebarPane.js",
112 "StylesSidebarPane.js", 119 "StylesSidebarPane.js",
113 "ElementsPanel.js", 120 "ElementsPanel.js",
114 "AnimationsSidebarPane.js" 121 "AnimationsSidebarPane.js"
115 ], 122 ],
116 "stylesheets": [ 123 "stylesheets": [
117 "breadcrumbs.css", 124 "breadcrumbs.css",
118 "elementsPanel.css", 125 "elementsPanel.css",
119 "elementsTreeOutline.css", 126 "elementsTreeOutline.css",
120 "spectrum.css" 127 "spectrum.css"
121 ] 128 ]
122 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698