// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_DESKTOP_GEOMETRY_H_ #define REMOTING_HOST_DESKTOP_GEOMETRY_H_ #include <optional> #include <vector> #include "ui/gfx/geometry/rect.h" #include "ui/gfx/geometry/size.h" #include "ui/gfx/geometry/vector2d.h" namespace remoting { DesktopScreenId; const DesktopScreenId kFullDesktopScreenId = …; class DesktopResolution { … }; class DesktopLayout { … }; struct DesktopLayoutSet { … }; } // namespace remoting #endif // REMOTING_HOST_DESKTOP_GEOMETRY_H_