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

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

Issue 2839413002: DevTools: add rendering overlay options to command menu (Closed)
Patch Set: ac Created 3 years, 7 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 "dependencies": [ 2 "dependencies": [
3 "common", 3 "common",
4 "host", 4 "host",
5 "platform", 5 "platform",
6 "protocol" 6 "protocol"
7 ], 7 ],
8 "extensions": [ 8 "extensions": [
9 { 9 {
10 "type": "setting", 10 "type": "setting",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ] 99 ]
100 }, 100 },
101 { 101 {
102 "type": "setting", 102 "type": "setting",
103 "settingName": "showMetricsRulers", 103 "settingName": "showMetricsRulers",
104 "settingType": "boolean", 104 "settingType": "boolean",
105 "defaultValue": false 105 "defaultValue": false
106 }, 106 },
107 { 107 {
108 "type": "setting", 108 "type": "setting",
109 "category": "Rendering",
109 "settingName": "showPaintRects", 110 "settingName": "showPaintRects",
110 "settingType": "boolean", 111 "settingType": "boolean",
111 "storageType": "session", 112 "storageType": "session",
113 "options": [
114 {
115 "value": true,
116 "title": "Show paint flashing rectangles"
117 },
118 {
119 "value": false,
120 "title": "Hide paint flashing rectangles"
121 }
122 ],
112 "defaultValue": false 123 "defaultValue": false
113 }, 124 },
114 { 125 {
115 "type": "setting", 126 "type": "setting",
127 "category": "Rendering",
116 "settingName": "showDebugBorders", 128 "settingName": "showDebugBorders",
117 "settingType": "boolean", 129 "settingType": "boolean",
118 "storageType": "session", 130 "storageType": "session",
131 "options": [
132 {
133 "value": true,
134 "title": "Show layer borders"
135 },
136 {
137 "value": false,
138 "title": "Hide layer borders"
139 }
140 ],
119 "defaultValue": false 141 "defaultValue": false
120 }, 142 },
121 { 143 {
122 "type": "setting", 144 "type": "setting",
145 "category": "Rendering",
123 "settingName": "showFPSCounter", 146 "settingName": "showFPSCounter",
124 "settingType": "boolean", 147 "settingType": "boolean",
125 "storageType": "session", 148 "storageType": "session",
149 "options": [
150 {
151 "value": true,
152 "title": "Show frames per second (FPS) meter"
153 },
154 {
155 "value": false,
156 "title": "Hide frames per second (FPS) meter"
157 }
158 ],
126 "defaultValue": false 159 "defaultValue": false
127 }, 160 },
128 { 161 {
129 "type": "setting", 162 "type": "setting",
163 "category": "Rendering",
130 "settingName": "showScrollBottleneckRects", 164 "settingName": "showScrollBottleneckRects",
131 "settingType": "boolean", 165 "settingType": "boolean",
132 "storageType": "session", 166 "storageType": "session",
167 "options": [
168 {
169 "value": true,
170 "title": "Show scroll performance bottlenecks"
171 },
172 {
173 "value": false,
174 "title": "Hide scroll performance bottlenecks"
175 }
176 ],
133 "defaultValue": false 177 "defaultValue": false
134 }, 178 },
135 { 179 {
136 "type": "setting", 180 "type": "setting",
181 "category": "Rendering",
182 "settingName": "emulatedCSSMedia",
183 "settingType": "enum",
184 "storageType": "session",
185 "defaultValue": "",
186 "options": [
187 {
188 "title": "Do not emulate CSS media type",
189 "text": "None",
dgozman 2017/05/16 18:47:25 "No emulation"? Maybe "<none>"?
luoe 2017/05/30 20:56:15 Done, "No emulation".
190 "value": ""
191 },
192 {
193 "title": "Emulate CSS print media type",
194 "text": "print",
195 "value": "print"
196 },
197 {
198 "title": "Emulate CSS screen media type",
199 "text": "screen",
200 "value": "screen"
201 }
202 ],
203 "tags": "query"
204 },
205 {
206 "type": "setting",
137 "category": "Console", 207 "category": "Console",
138 "title": "Enable custom formatters", 208 "title": "Enable custom formatters",
139 "settingName": "customFormatters", 209 "settingName": "customFormatters",
140 "settingType": "boolean", 210 "settingType": "boolean",
141 "defaultValue": false 211 "defaultValue": false
142 }, 212 },
143 { 213 {
144 "type": "setting", 214 "type": "setting",
145 "category": "Network", 215 "category": "Network",
146 "title": "Enable request blocking", 216 "title": "Enable request blocking",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "NetworkRequest.js", 273 "NetworkRequest.js",
204 "PaintProfiler.js", 274 "PaintProfiler.js",
205 "HeapProfilerModel.js", 275 "HeapProfilerModel.js",
206 "../SupportedCSSProperties.js", 276 "../SupportedCSSProperties.js",
207 "FilmStripModel.js" 277 "FilmStripModel.js"
208 ], 278 ],
209 "skip_compilation": [ 279 "skip_compilation": [
210 "../SupportedCSSProperties.js" 280 "../SupportedCSSProperties.js"
211 ] 281 ]
212 } 282 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698