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

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

Issue 1650243004: [DevTools] Option to show device frames in emulation mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "emulated-device", 4 "type": "emulated-device",
5 "device": { 5 "device": {
6 "show-by-default": false, 6 "show-by-default": false,
7 "title": "iPhone 4" , 7 "title": "iPhone 4" ,
8 "screen": { 8 "screen": {
9 "horizontal": { 9 "horizontal": {
10 "width": 480, 10 "width": 480,
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "type": "phone", 289 "type": "phone",
290 "user-agent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MR A58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.23 Mobile Safari/5 37.36", 290 "user-agent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MR A58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.23 Mobile Safari/5 37.36",
291 "capabilities": [ 291 "capabilities": [
292 "touch", 292 "touch",
293 "mobile" 293 "mobile"
294 ], 294 ],
295 "show-by-default": true, 295 "show-by-default": true,
296 "screen": { 296 "screen": {
297 "device-pixel-ratio": 2.625, 297 "device-pixel-ratio": 2.625,
298 "vertical": { 298 "vertical": {
299 "outline" : {
300 "image": "@url(nexus_5x_portrait.svg) 1x, @url(nexus _5x_portrait.svg) 2x",
301 "insets" : { "left": 20, "top": 88, "right": 0, "bot tom": 0 },
302 "width": 454,
303 "height": 921
304 },
299 "width": 411, 305 "width": 411,
300 "height": 731 306 "height": 731
301 }, 307 },
302 "horizontal": { 308 "horizontal": {
309 "outline" : {
310 "image": "@url(nexus_5x_landscape.svg) 1x, @url(nexu s_5x_landscape.svg) 2x",
311 "insets" : { "left": 0, "top": 0, "right": 0, "botto m": 0 },
dgozman 2016/02/01 17:18:27 Zero insets are probably wrong.
mmccoy 2016/02/10 20:06:33 Done.
312 "width": 921,
313 "height": 454
314 },
303 "width": 731, 315 "width": 731,
304 "height": 411 316 "height": 411
305 } 317 }
306 }, 318 },
307 "modes": [ 319 "modes": [
308 { 320 {
309 "title": "default", 321 "title": "default",
310 "orientation": "vertical", 322 "orientation": "vertical",
311 "insets": { "left": 0, "top": 24, "right": 0, "bottom": 48 }, 323 "insets": { "left": 0, "top": 24, "right": 0, "bottom": 48 },
312 "image": "@url(google-nexus-5x-vertical-default-1x.png) 1x, @url(google-nexus-5x-vertical-default-2x.png) 2x" 324 "image": "@url(google-nexus-5x-vertical-default-1x.png) 1x, @url(google-nexus-5x-vertical-default-2x.png) 2x"
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 } 987 }
976 ], 988 ],
977 "dependencies": [ 989 "dependencies": [
978 "emulation" 990 "emulation"
979 ], 991 ],
980 "scripts": [ 992 "scripts": [
981 ], 993 ],
982 "resources": [ 994 "resources": [
983 ] 995 ]
984 } 996 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698