blob: 4c85f9555dc4908c831f9443cb6277f6813c9a72 [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 ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_
#define ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_
#include <stdint.h>
#include "ash/ash_export.h"
#include "ui/gfx/geometry/rect.h"
namespace ash {
struct ASH_EXPORT AshWindowTreeHostInitParams {
// This corresponds to display::ManagedDisplayInfo::bounds_in_native.
gfx::Rect initial_bounds;
bool offscreen = false;
int64_t display_id = 0;
float device_scale_factor = 0.0f;
float ui_scale_factor = 0.0f;
};
} // namespace ash
#endif // ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_