OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 ["Samsung Galaxy Note", | 333 ["Samsung Galaxy Note", |
334 "Mozilla/5.0 (Linux; U; Android 2.3; en-us; SAMSUNG-SGH-I717 Build/GINGERBR
EAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1", | 334 "Mozilla/5.0 (Linux; U; Android 2.3; en-us; SAMSUNG-SGH-I717 Build/GINGERBR
EAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1", |
335 "800x1280x2"], | 335 "800x1280x2"], |
336 ["Samsung Galaxy S III, Galaxy Nexus", | 336 ["Samsung Galaxy S III, Galaxy Nexus", |
337 "Mozilla/5.0 (Linux; U; Android 4.0; en-us; GT-I9300 Build/IMM76D) AppleWeb
Kit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", | 337 "Mozilla/5.0 (Linux; U; Android 4.0; en-us; GT-I9300 Build/IMM76D) AppleWeb
Kit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", |
338 "720x1280x2"], | 338 "720x1280x2"], |
339 ["Samsung Galaxy S, S II, W", | 339 ["Samsung Galaxy S, S II, W", |
340 "Mozilla/5.0 (Linux; U; Android 2.1; en-us; GT-I9000 Build/ECLAIR) AppleWeb
Kit/525.10+ (KHTML, like Gecko) Version/3.0.4 Mobile Safari/523.12.2", | 340 "Mozilla/5.0 (Linux; U; Android 2.1; en-us; GT-I9000 Build/ECLAIR) AppleWeb
Kit/525.10+ (KHTML, like Gecko) Version/3.0.4 Mobile Safari/523.12.2", |
341 "480x800x1.5"], | 341 "480x800x1.5"], |
342 ["Samsung Galaxy S4", | 342 ["Samsung Galaxy S4", |
343 "Mozilla/5.0 (Linux; U; Android 2.1; en-us; GT-I9000 Build/ECLAIR) AppleWeb
Kit/525.10+ (KHTML, like Gecko) Version/3.0.4 Mobile Safari/523.12.2", | 343 "Mozilla/5.0 (Linux; Android 4.2.2; GT-I9505 Build/JDQ39) AppleWebKit/537.3
6 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36", |
344 "1080x1920x3"], | 344 "1080x1920x3"], |
345 ["Sony Xperia S, Ion", | 345 ["Sony Xperia S, Ion", |
346 "Mozilla/5.0 (Linux; U; Android 4.0; en-us; LT28at Build/6.1.C.1.111) Apple
WebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", | 346 "Mozilla/5.0 (Linux; U; Android 4.0; en-us; LT28at Build/6.1.C.1.111) Apple
WebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", |
347 "720x1280x2"], | 347 "720x1280x2"], |
348 ["Sony Xperia Sola, U", | 348 ["Sony Xperia Sola, U", |
349 "Mozilla/5.0 (Linux; U; Android 2.3; en-us; SonyEricssonST25i Build/6.0.B.1
.564) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1", | 349 "Mozilla/5.0 (Linux; U; Android 2.3; en-us; SonyEricssonST25i Build/6.0.B.1
.564) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1", |
350 "480x854x1"], | 350 "480x854x1"], |
351 ["Sony Xperia Z, Z1", | 351 ["Sony Xperia Z, Z1", |
352 "Mozilla/5.0 (Linux; U; Android 4.2; en-us; SonyC6903 Build/14.1.G.1.518) A
ppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", | 352 "Mozilla/5.0 (Linux; U; Android 4.2; en-us; SonyC6903 Build/14.1.G.1.518) A
ppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30", |
353 "1080x1920x3"], | 353 "1080x1920x3"], |
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1089 | 1089 |
1090 __proto__ : WebInspector.OverridesView.Tab.prototype | 1090 __proto__ : WebInspector.OverridesView.Tab.prototype |
1091 } | 1091 } |
1092 | 1092 |
1093 /** @enum {string} */ | 1093 /** @enum {string} */ |
1094 WebInspector.OverridesView.SensorsTab.DeviceOrientationModificationSource = { | 1094 WebInspector.OverridesView.SensorsTab.DeviceOrientationModificationSource = { |
1095 UserInput: "userInput", | 1095 UserInput: "userInput", |
1096 UserDrag: "userDrag", | 1096 UserDrag: "userDrag", |
1097 ResetButton: "resetButton" | 1097 ResetButton: "resetButton" |
1098 } | 1098 } |
OLD | NEW |