blob: 9af274ca65faf12734c8f5627140a2bba45b3a01 [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.
#ifndef CHROME_TEST_CHROMEDRIVER_CHROME_DEVICE_METRICS_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_DEVICE_METRICS_H_
struct DeviceMetrics {
DeviceMetrics(int width, int height, double device_scale_factor, bool touch,
bool mobile);
~DeviceMetrics();
int width;
int height;
double device_scale_factor;
bool touch;
bool mobile;
bool fit_window;
bool text_autosizing;
double font_scale_factor;
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_DEVICE_METRICS_H_