#include "ui/ozone/platform/wayland/test/mock_wayland_platform_window_delegate.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/ozone/platform/wayland/host/wayland_window.h"
namespace ui {
MockWaylandPlatformWindowDelegate::MockWaylandPlatformWindowDelegate() =
default;
MockWaylandPlatformWindowDelegate::~MockWaylandPlatformWindowDelegate() =
default;
gfx::Rect MockWaylandPlatformWindowDelegate::ConvertRectToPixels(
const gfx::Rect& rect_in_dp) const { … }
gfx::Rect MockWaylandPlatformWindowDelegate::ConvertRectToDIP(
const gfx::Rect& rect_in_pixels) const { … }
std::unique_ptr<WaylandWindow>
MockWaylandPlatformWindowDelegate::CreateWaylandWindow(
WaylandConnection* connection,
PlatformWindowInitProperties properties) { … }
int64_t MockWaylandPlatformWindowDelegate::OnStateUpdate(
const PlatformWindowDelegate::State& old,
const PlatformWindowDelegate::State& latest) { … }
}