OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef ASH_TEST_MIRROR_WINDOW_TEST_API_H_ |
| 6 #define ASH_TEST_MIRROR_WINDOW_TEST_API_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 |
| 10 namespace aura { |
| 11 class RootWindow; |
| 12 class Window; |
| 13 } |
| 14 |
| 15 namespace gfx { |
| 16 class Point; |
| 17 } |
| 18 |
| 19 namespace ash { |
| 20 namespace test { |
| 21 |
| 22 class MirrorWindowTestApi { |
| 23 public: |
| 24 MirrorWindowTestApi() {} |
| 25 ~MirrorWindowTestApi() {} |
| 26 |
| 27 const aura::RootWindow* GetRootWindow() const; |
| 28 |
| 29 int GetCurrentCursorType() const; |
| 30 const gfx::Point& GetCursorHotPoint() const; |
| 31 const aura::Window* GetCursorWindow() const; |
| 32 |
| 33 private: |
| 34 DISALLOW_COPY_AND_ASSIGN(MirrorWindowTestApi); |
| 35 }; |
| 36 |
| 37 } // namespace test |
| 38 } // namespace ash |
| 39 |
| 40 #endif // ASH_TEST_MIRROR_WINDOW_TEST_API_H_ |
OLD | NEW |