class UserAgent::Browsers::Webkit

def platform

def platform
  return unless application
  if application.comment[0] =~ /Windows/
    'Windows'
  elsif application.comment[0] == 'BB10'
    'BlackBerry'
  elsif application.comment.any? { |c| c =~ /Android/ }
    'Android'
  else
    application.comment[0]
  end
end