1# Copyright 2012 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5UA_TYPE_MAPPING = { 6 'desktop': 7 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) ' 8 'AppleWebKit/537.36 (KHTML, like Gecko) ' 9 'Chrome/40.0.2194.2 Safari/537.36', 10 'mobile': 11 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) ' 12 'AppleWebKit/535.36 (KHTML, like Gecko) Chrome/40.0.2194.2 Mobile ' 13 'Safari/535.36', 14 'tablet': 15 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus 7 Build/IMM76B) ' 16 'AppleWebKit/535.36 (KHTML, like Gecko) Chrome/40.0.2194.2 ' 17 'Safari/535.36', 18 'tablet_10_inch': 19 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus 10 Build/IMM76B) ' 20 'AppleWebKit/535.36 (KHTML, like Gecko) Chrome/40.0.2194.2 ' 21 'Safari/535.36', 22} 23 24 25def GetChromeUserAgentArgumentFromType(user_agent_type): 26 """Returns a chrome user agent based on a user agent type. 27 This is derived from: 28 https://developers.google.com/chrome/mobile/docs/user-agent 29 """ 30 if user_agent_type: 31 return ['--user-agent=%s' % UA_TYPE_MAPPING[user_agent_type]] 32 return [] 33 34def GetChromeUserAgentDictFromType(user_agent_type): 35 if user_agent_type: 36 return {'userAgent': UA_TYPE_MAPPING[user_agent_type]} 37 return '' 38