blob: 3b3789c0b01cf18665f600bc8cdb6d329bcd5922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// 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() {}
// MouseWarpController:
bool WarpMouseCursor(ui::MouseEvent* event) override;
private:
DISALLOW_COPY_AND_ASSIGN(NullMouseWarpController);
};
} // namespace ash
#endif // ASH_DISPLAY_MOUSE_WARP_CONTROLLER_H
|