| // Copyright 2020 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. | |
| module display.mojom; | |
| import "ui/display/mojom/display_mode.mojom"; | |
| import "ui/gfx/geometry/mojom/geometry.mojom"; | |
| // Corresponds to display::DisplayConfigurationParams. | |
| struct DisplayConfigurationParams { | |
| int64 id; | |
| gfx.mojom.Point origin; | |
| display.mojom.DisplayMode? mode; | |
| }; |