OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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 UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ | 5 #ifndef UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ |
6 #define UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ | 6 #define UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ |
7 | 7 |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "ui/views/corewm/native_cursor_manager_delegate.h" | 9 #include "ui/views/corewm/native_cursor_manager_delegate.h" |
10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
11 | 11 |
12 namespace gfx { | 12 namespace gfx { |
13 class Display; | 13 class Display; |
14 } | 14 } |
15 | 15 |
16 namespace views { | 16 namespace views { |
17 namespace corewm { | 17 namespace corewm { |
18 | 18 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 // Used to pass the cursor resource module name to the cursor loader. This is | 58 // Used to pass the cursor resource module name to the cursor loader. This is |
59 // typically used to load non system cursors. | 59 // typically used to load non system cursors. |
60 virtual void SetCursorResourceModule(const string16& module_name) = 0; | 60 virtual void SetCursorResourceModule(const string16& module_name) = 0; |
61 }; | 61 }; |
62 | 62 |
63 } // namespace corewm | 63 } // namespace corewm |
64 } // namespace views | 64 } // namespace views |
65 | 65 |
66 #endif // UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ | 66 #endif // UI_VIEWS_COREWM_NATIVE_CURSOR_MANAGER_H_ |
OLD | NEW |