blob: df43587acb5da9382dac48767d47037e5690347a [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/chromedriver/chrome/device_metrics.h"
DeviceMetrics::DeviceMetrics(int width, int height, double device_scale_factor)
: width(width),
height(height),
device_scale_factor(device_scale_factor),
mobile(true),
fit_window(false),
text_autosizing(true),
font_scale_factor(1) {}
DeviceMetrics::~DeviceMetrics() {}