#ifndef ASH_WM_CURSOR_MANAGER_CHROMEOS_H_
#define ASH_WM_CURSOR_MANAGER_CHROMEOS_H_
#include <memory>
#include "ash/ash_export.h"
#include "base/compiler_specific.h"
#include "ui/wm/core/cursor_manager.h"
#include "ui/wm/core/native_cursor_manager_delegate.h"
namespace ui {
class KeyEvent;
}
namespace wm {
class NativeCursorManager;
}
namespace ash {
class ASH_EXPORT CursorManager : public wm::CursorManager {
public:
explicit CursorManager(std::unique_ptr<wm::NativeCursorManager> delegate);
CursorManager(const CursorManager&) = delete;
CursorManager& operator=(const CursorManager&) = delete;
~CursorManager() override;
void Init();
bool ShouldHideCursorOnKeyEvent(const ui::KeyEvent& event) const override;
};
}
#endif