// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_WINDOW_MOVE_CLIENT_PLATFORM_H_ #define UI_VIEWS_WIDGET_DESKTOP_AURA_WINDOW_MOVE_CLIENT_PLATFORM_H_ #include "base/memory/raw_ptr.h" #include "ui/views/views_export.h" #include "ui/wm/public/window_move_client.h" namespace views { class DesktopWindowTreeHostPlatform; // Reroutes move loop requests to DesktopWindowTreeHostPlatform. class VIEWS_EXPORT WindowMoveClientPlatform : public wm::WindowMoveClient { … }; } // namespace views #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_WINDOW_MOVE_CLIENT_PLATFORM_H_