blob: 7babca15be14296559d4a76be760e828c99d25d7 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_DISPLAY_NULL_MOUSE_WARP_CONTROLLER_H_
#define ASH_DISPLAY_NULL_MOUSE_WARP_CONTROLLER_H_
#include "ash/display/mouse_warp_controller.h"
namespace ash {
// A MouseWarpController when there is one desktop display
// (in single display or mirror mode).
class NullMouseWarpController : public MouseWarpController {
public:
NullMouseWarpController() {}
NullMouseWarpController(const NullMouseWarpController&) = delete;
NullMouseWarpController& operator=(const NullMouseWarpController&) = delete;
// MouseWarpController:
bool WarpMouseCursor(ui::MouseEvent* event) override;
void SetEnabled(bool enable) override;
};
} // namespace ash
#endif // ASH_DISPLAY_NULL_MOUSE_WARP_CONTROLLER_H_