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

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

Issue 1160323004: [DevTools] Move emulated devices to separate module. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed compile Created 5 years, 6 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
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/emulation/EmulatedDevices.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "extensions": [
3 {
4 "type": "emulated-device",
5 "device": {
6 "show-by-default": true,
7 "modes": [],
8 "title": "Apple iPhone 4",
9 "screen": {
10 "horizontal": {
11 "width": 480,
12 "height": 320
13 },
14 "device-pixel-ratio": 2,
15 "vertical": {
16 "width": 320,
17 "height": 480
18 }
19 },
20 "capabilities": [
21 "touch",
22 "mobile"
23 ],
24 "user-agent": "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8 C148 Safari/6533.18.5",
25 "type": "phone"
26 }
27 },
28 {
29 "type": "emulated-device",
30 "device": {
31 "show-by-default": true,
32 "modes": [],
33 "title": "Apple iPhone 5",
34 "screen": {
35 "horizontal": {
36 "width": 568,
37 "height": 320
38 },
39 "device-pixel-ratio": 2,
40 "vertical": {
41 "width": 320,
42 "height": 568
43 }
44 },
45 "capabilities": [
46 "touch",
47 "mobile"
48 ],
49 "user-agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac O S X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 S afari/9537.53",
50 "type": "phone"
51 }
52 },
53 {
54 "type": "emulated-device",
55 "device": {
56 "show-by-default": true,
57 "modes": [],
58 "title": "Apple iPhone 6",
59 "screen": {
60 "horizontal": {
61 "width": 667,
62 "height": 375
63 },
64 "device-pixel-ratio": 2,
65 "vertical": {
66 "width": 375,
67 "height": 667
68 }
69 },
70 "capabilities": [
71 "touch",
72 "mobile"
73 ],
74 "user-agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac O S X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/ 600.1.4",
75 "type": "phone"
76 }
77 },
78 {
79 "type": "emulated-device",
80 "device": {
81 "show-by-default": true,
82 "modes": [],
83 "title": "Apple iPhone 6 Plus",
84 "screen": {
85 "horizontal": {
86 "width": 736,
87 "height": 414
88 },
89 "device-pixel-ratio": 3,
90 "vertical": {
91 "width": 414,
92 "height": 736
93 }
94 },
95 "capabilities": [
96 "touch",
97 "mobile"
98 ],
99 "user-agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac O S X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/ 600.1.4",
100 "type": "phone"
101 }
102 },
103 {
104 "type": "emulated-device",
105 "device": {
106 "show-by-default": true,
107 "modes": [],
108 "title": "BlackBerry Z30",
109 "screen": {
110 "horizontal": {
111 "width": 640,
112 "height": 360
113 },
114 "device-pixel-ratio": 2,
115 "vertical": {
116 "width": 360,
117 "height": 640
118 }
119 },
120 "capabilities": [
121 "touch",
122 "mobile"
123 ],
124 "user-agent": "Mozilla/5.0 (BB10; Touch) AppleWebKit/537.10+ (KH TML, like Gecko) Version/10.0.9.2372 Mobile Safari/537.10+",
125 "type": "phone"
126 }
127 },
128 {
129 "type": "emulated-device",
130 "device": {
131 "show-by-default": true,
132 "modes": [],
133 "title": "Google Nexus 4",
134 "screen": {
135 "horizontal": {
136 "width": 640,
137 "height": 384
138 },
139 "device-pixel-ratio": 2,
140 "vertical": {
141 "width": 384,
142 "height": 640
143 }
144 },
145 "capabilities": [
146 "touch",
147 "mobile"
148 ],
149 "user-agent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/ KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.122 Mobile Safar i/537.36",
150 "type": "phone"
151 }
152 },
153 {
154 "type": "emulated-device",
155 "device": {
156 "title": "Google Nexus 5",
157 "type": "phone",
158 "user-agent": "Mozilla/5.0 (Linux; Android 4.4.4; Nexus 5 Build/ KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.114 Mobile Safar i/537.36",
159 "capabilities": [
160 "touch",
161 "mobile"
162 ],
163 "show-by-default": true,
164 "screen": {
165 "device-pixel-ratio": 3,
166 "vertical": {
167 "width": 360,
168 "height": 640
169 },
170 "horizontal": {
171 "width": 640,
172 "height": 360
173 }
174 },
175 "modes": []
176 }
177 },
178 {
179 "type": "emulated-device",
180 "device": {
181 "show-by-default": true,
182 "modes": [],
183 "title": "Google Nexus 6",
184 "screen": {
185 "horizontal": {
186 "width": 412,
187 "height": 732
188 },
189 "device-pixel-ratio": 3.5,
190 "vertical": {
191 "width": 732,
192 "height": 412
193 }
194 },
195 "capabilities": [
196 "touch",
197 "mobile"
198 ],
199 "user-agent": "Mozilla/5.0 (Linux; Android 5.1.1; Nexus 6 Build/ LYZ28E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.20 Mobile Safari /537.36",
200 "type": "phone"
201 }
202 },
203 {
204 "type": "emulated-device",
205 "device": {
206 "show-by-default": true,
207 "modes": [],
208 "title": "LG Optimus L70",
209 "screen": {
210 "horizontal": {
211 "width": 384,
212 "height": 640
213 },
214 "device-pixel-ratio": 1.25,
215 "vertical": {
216 "width": 640,
217 "height": 384
218 }
219 },
220 "capabilities": [
221 "touch",
222 "mobile"
223 ],
224 "user-agent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS 323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Ch rome/30.0.1599.103 Mobile Safari/537.36",
225 "type": "phone"
226 }
227 },
228 {
229 "type": "emulated-device",
230 "device": {
231 "show-by-default": true,
232 "modes": [],
233 "title": "Nokia N9",
234 "screen": {
235 "horizontal": {
236 "width": 360,
237 "height": 640
238 },
239 "device-pixel-ratio": 1,
240 "vertical": {
241 "width": 640,
242 "height": 360
243 }
244 },
245 "capabilities": [
246 "touch",
247 "mobile"
248 ],
249 "user-agent": "Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 ( KHTML, like Gecko) NokiaBrowser/8.5.0 Mobile Safari/534.13",
250 "type": "phone"
251 }
252 },
253 {
254 "type": "emulated-device",
255 "device": {
256 "show-by-default": true,
257 "modes": [],
258 "title": "Nokia Lumia 520",
259 "screen": {
260 "horizontal": {
261 "width": 320,
262 "height": 533
263 },
264 "device-pixel-ratio": 1.4,
265 "vertical": {
266 "width": 533,
267 "height": 320
268 }
269 },
270 "capabilities": [
271 "touch",
272 "mobile"
273 ],
274 "user-agent": "Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 520)",
275 "type": "phone"
276 }
277 },
278 {
279 "type": "emulated-device",
280 "device": {
281 "show-by-default": true,
282 "modes": [],
283 "title": "Samsung Galaxy S III",
284 "screen": {
285 "horizontal": {
286 "width": 640,
287 "height": 360
288 },
289 "device-pixel-ratio": 2,
290 "vertical": {
291 "width": 360,
292 "height": 640
293 }
294 },
295 "capabilities": [
296 "touch",
297 "mobile"
298 ],
299 "user-agent": "Mozilla/5.0 (Linux; U; Android 4.0; en-us; GT-I93 00 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safar i/534.30",
300 "type": "phone"
301 }
302 },
303 {
304 "type": "emulated-device",
305 "device": {
306 "show-by-default": true,
307 "modes": [],
308 "title": "Samsung Galaxy S4",
309 "screen": {
310 "horizontal": {
311 "width": 640,
312 "height": 360
313 },
314 "device-pixel-ratio": 3,
315 "vertical": {
316 "width": 360,
317 "height": 640
318 }
319 },
320 "capabilities": [
321 "touch",
322 "mobile"
323 ],
324 "user-agent": "Mozilla/5.0 (Linux; Android 4.2.2; GT-I9505 Build /JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari /537.36",
325 "type": "phone"
326 }
327 },
328 {
329 "type": "emulated-device",
330 "device": {
331 "show-by-default": true,
332 "modes": [],
333 "title": "Amazon Kindle Fire HDX",
334 "screen": {
335 "horizontal": {
336 "width": 1600,
337 "height": 2560
338 },
339 "device-pixel-ratio": 2,
340 "vertical": {
341 "width": 2560,
342 "height": 1600
343 }
344 },
345 "capabilities": [
346 "touch",
347 "mobile"
348 ],
349 "user-agent": "Mozilla/5.0 (Linux; U; en-us; KFAPWI Build/JDQ39) AppleWebKit/535.19 (KHTML, like Gecko) Silk/3.13 Safari/535.19 Silk-Accelerated =true",
350 "type": "tablet"
351 }
352 },
353 {
354 "type": "emulated-device",
355 "device": {
356 "show-by-default": true,
357 "modes": [],
358 "title": "Apple iPad Mini",
359 "screen": {
360 "horizontal": {
361 "width": 768,
362 "height": 1024
363 },
364 "device-pixel-ratio": 2,
365 "vertical": {
366 "width": 1024,
367 "height": 768
368 }
369 },
370 "capabilities": [
371 "touch",
372 "mobile"
373 ],
374 "user-agent": "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) Ap pleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53 ",
375 "type": "tablet"
376 }
377 },
378 {
379 "type": "emulated-device",
380 "device": {
381 "show-by-default": true,
382 "modes": [],
383 "title": "Apple iPad",
384 "screen": {
385 "horizontal": {
386 "width": 768,
387 "height": 1024
388 },
389 "device-pixel-ratio": 2,
390 "vertical": {
391 "width": 1024,
392 "height": 768
393 }
394 },
395 "capabilities": [
396 "touch",
397 "mobile"
398 ],
399 "user-agent": "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) Appl eWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53",
400 "type": "tablet"
401 }
402 },
403 {
404 "type": "emulated-device",
405 "device": {
406 "show-by-default": true,
407 "modes": [],
408 "title": "BlackBerry PlayBook",
409 "screen": {
410 "horizontal": {
411 "width": 600,
412 "height": 1024
413 },
414 "device-pixel-ratio": 1,
415 "vertical": {
416 "width": 1024,
417 "height": 600
418 }
419 },
420 "capabilities": [
421 "touch",
422 "mobile"
423 ],
424 "user-agent": "Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.1.0; en -US) AppleWebKit/536.2+ (KHTML like Gecko) Version/7.2.1.0 Safari/536.2+",
425 "type": "tablet"
426 }
427 },
428 {
429 "type": "emulated-device",
430 "device": {
431 "show-by-default": true,
432 "modes": [],
433 "title": "Google Nexus 10",
434 "screen": {
435 "horizontal": {
436 "width": 800,
437 "height": 1280
438 },
439 "device-pixel-ratio": 2,
440 "vertical": {
441 "width": 1280,
442 "height": 800
443 }
444 },
445 "capabilities": [
446 "touch",
447 "mobile"
448 ],
449 "user-agent": "Mozilla/5.0 (Linux; Android 4.3; Nexus 10 Build/J SS15Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2307.2 Safari/537.36",
450 "type": "tablet"
451 }
452 },
453 {
454 "type": "emulated-device",
455 "device": {
456 "show-by-default": true,
457 "modes": [],
458 "title": "Google Nexus 7",
459 "screen": {
460 "horizontal": {
461 "width": 600,
462 "height": 960
463 },
464 "device-pixel-ratio": 2,
465 "vertical": {
466 "width": 960,
467 "height": 600
468 }
469 },
470 "capabilities": [
471 "touch",
472 "mobile"
473 ],
474 "user-agent": "Mozilla/5.0 (Linux; Android 4.3; Nexus 7 Build/JS S15Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2307.2 Safari/537.36",
475 "type": "tablet"
476 }
477 },
478 {
479 "type": "emulated-device",
480 "device": {
481 "show-by-default": true,
482 "modes": [],
483 "title": "Samsung Galaxy Note 3",
484 "screen": {
485 "horizontal": {
486 "width": 640,
487 "height": 360
488 },
489 "device-pixel-ratio": 3,
490 "vertical": {
491 "width": 360,
492 "height": 640
493 }
494 },
495 "capabilities": [
496 "touch",
497 "mobile"
498 ],
499 "user-agent": "Mozilla/5.0 (Linux; U; Android 4.3; en-us; SM-N90 0T Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safar i/534.30",
500 "type": "phone"
501 }
502 },
503 {
504 "type": "emulated-device",
505 "device": {
506 "show-by-default": true,
507 "modes": [],
508 "title": "Samsung Galaxy Note II",
509 "screen": {
510 "horizontal": {
511 "width": 640,
512 "height": 360
513 },
514 "device-pixel-ratio": 2,
515 "vertical": {
516 "width": 360,
517 "height": 640
518 }
519 },
520 "capabilities": [
521 "touch",
522 "mobile"
523 ],
524 "user-agent": "Mozilla/5.0 (Linux; U; Android 4.1; en-us; GT-N71 00 Build/JRO03C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safar i/534.30",
525 "type": "phone"
526 }
527 },
528 {
529 "type": "emulated-device",
530 "device": {
531 "show-by-default": true,
532 "modes": [],
533 "title": "Laptop with touch",
534 "screen": {
535 "horizontal": {
536 "width": 1280,
537 "height": 950
538 },
539 "device-pixel-ratio": 1,
540 "vertical": {
541 "width": 950,
542 "height": 1280
543 }
544 },
545 "capabilities": [
546 "touch"
547 ],
548 "user-agent": "",
549 "type": "notebook"
550 }
551 },
552 {
553 "type": "emulated-device",
554 "device": {
555 "show-by-default": true,
556 "modes": [],
557 "title": "Laptop with HiDPI screen",
558 "screen": {
559 "horizontal": {
560 "width": 1440,
561 "height": 900
562 },
563 "device-pixel-ratio": 2,
564 "vertical": {
565 "width": 900,
566 "height": 1440
567 }
568 },
569 "capabilities": [],
570 "user-agent": "",
571 "type": "notebook"
572 }
573 },
574 {
575 "type": "emulated-device",
576 "device": {
577 "show-by-default": true,
578 "modes": [],
579 "title": "Laptop with MDPI screen",
580 "screen": {
581 "horizontal": {
582 "width": 1280,
583 "height": 800
584 },
585 "device-pixel-ratio": 1,
586 "vertical": {
587 "width": 800,
588 "height": 1280
589 }
590 },
591 "capabilities": [],
592 "user-agent": "",
593 "type": "notebook"
594 }
595 }
596 ],
597 "dependencies": [
598 "emulation"
599 ],
600 "scripts": [
601 ],
602 "resources": [
603 ]
604 }
OLDNEW
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/emulation/EmulatedDevices.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698