#ifndef ASH_FAST_INK_LASER_LASER_POINTER_CONTROLLER_TEST_API_H_
#define ASH_FAST_INK_LASER_LASER_POINTER_CONTROLLER_TEST_API_H_
#include "ash/system/palette/palette_tray.h"
#include "base/memory/raw_ptr.h"
#include "ui/display/display.h"
namespace ash {
class FastInkPoints;
class LaserPointerController;
class LaserPointerControllerTestApi {
public:
explicit LaserPointerControllerTestApi(LaserPointerController* instance);
LaserPointerControllerTestApi(const LaserPointerControllerTestApi&) = delete;
LaserPointerControllerTestApi& operator=(
const LaserPointerControllerTestApi&) = delete;
~LaserPointerControllerTestApi();
void SetEnabled(bool enabled);
bool IsEnabled() const;
bool IsShowingLaserPointer() const;
bool IsFadingAway() const;
bool HasLaserPointerView() const;
views::View* GetLaserPointerView() const;
PaletteTray* GetPaletteTrayOnDisplay(int64_t display_id) const;
const FastInkPoints& laser_points() const;
const FastInkPoints& predicted_laser_points() const;
private:
raw_ptr<LaserPointerController> instance_;
};
}
#endif