blob: 70b95924058299a3b8733213a643a17906f96131 [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(false),
fit_window(true),
text_autosizing(true),
font_scale_factor(1) {}
DeviceMetrics::~DeviceMetrics() {}