#ifndef ASH_DISPLAY_MIRROR_WINDOW_TEST_API_H_
#define ASH_DISPLAY_MIRROR_WINDOW_TEST_API_H_
#include <vector>
#include "ui/base/cursor/mojom/cursor_type.mojom-forward.h"
namespace aura {
class Window;
class WindowTreeHost;
}
namespace gfx {
class Point;
}
namespace ash {
class MirrorWindowTestApi {
public:
MirrorWindowTestApi() {}
MirrorWindowTestApi(const MirrorWindowTestApi&) = delete;
MirrorWindowTestApi& operator=(const MirrorWindowTestApi&) = delete;
~MirrorWindowTestApi() {}
std::vector<aura::WindowTreeHost*> GetHosts() const;
ui::mojom::CursorType GetCurrentCursorType() const;
const gfx::Point& GetCursorHotPoint() const;
gfx::Point GetCursorHotPointLocationInRootWindow() const;
const aura::Window* GetCursorHostWindow() const;
gfx::Point GetCursorLocation() const;
};
}
#endif