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
ash / wm / cursor_manager_test_api.h [blame]
// Copyright 2012 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_WM_CURSOR_MANAGER_TEST_API_H_
#define ASH_WM_CURSOR_MANAGER_TEST_API_H_
#include "ui/display/display.h"
namespace ash {
// Use the api in this class to test CursorManager.
class CursorManagerTestApi {
public:
CursorManagerTestApi();
CursorManagerTestApi(const CursorManagerTestApi&) = delete;
CursorManagerTestApi& operator=(const CursorManagerTestApi&) = delete;
~CursorManagerTestApi();
display::Display::Rotation GetCurrentCursorRotation() const;
};
} // namespace ash
#endif // ASH_WM_CURSOR_MANAGER_TEST_API_H_