OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_WM_IMAGE_CURSORS_H_ | 5 #ifndef ASH_WM_IMAGE_CURSORS_H_ |
6 #define ASH_WM_IMAGE_CURSORS_H_ | 6 #define ASH_WM_IMAGE_CURSORS_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "ui/base/cursor/cursor.h" |
11 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
12 | 13 |
13 namespace gfx { | 14 namespace gfx { |
14 class Display; | 15 class Display; |
15 } | 16 } |
16 | 17 |
17 namespace ui { | 18 namespace ui { |
18 class CursorLoader; | 19 class CursorLoader; |
19 } | 20 } |
20 | 21 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 scoped_ptr<ui::CursorLoader> cursor_loader_; | 54 scoped_ptr<ui::CursorLoader> cursor_loader_; |
54 float scale_; | 55 float scale_; |
55 ui::CursorSetType cursor_set_; | 56 ui::CursorSetType cursor_set_; |
56 | 57 |
57 DISALLOW_COPY_AND_ASSIGN(ImageCursors); | 58 DISALLOW_COPY_AND_ASSIGN(ImageCursors); |
58 }; | 59 }; |
59 | 60 |
60 } // namespace ash | 61 } // namespace ash |
61 | 62 |
62 #endif // ASH_WM_IMAGE_CURSORS_H_ | 63 #endif // ASH_WM_IMAGE_CURSORS_H_ |
OLD | NEW |