| Index: ui/wm/core/native_cursor_manager.h
|
| diff --git a/ui/wm/core/native_cursor_manager.h b/ui/wm/core/native_cursor_manager.h
|
| index de16ef8ce2d80d048bac49920d812da85336b432..d4767b46e74e3417f0fecb124d21f513ac787475 100644
|
| --- a/ui/wm/core/native_cursor_manager.h
|
| +++ b/ui/wm/core/native_cursor_manager.h
|
| @@ -14,6 +14,10 @@ namespace gfx {
|
| class Display;
|
| }
|
|
|
| +namespace display {
|
| +using Display = gfx::Display;
|
| +}
|
| +
|
| namespace wm {
|
|
|
| // Interface where platforms such as Ash or Desktop aura are notified of
|
| @@ -25,9 +29,8 @@ class WM_EXPORT NativeCursorManager {
|
| virtual ~NativeCursorManager() {}
|
|
|
| // A request to set the screen DPI. Can cause changes in the current cursor.
|
| - virtual void SetDisplay(
|
| - const gfx::Display& display,
|
| - NativeCursorManagerDelegate* delegate) = 0;
|
| + virtual void SetDisplay(const display::Display& display,
|
| + NativeCursorManagerDelegate* delegate) = 0;
|
|
|
| // A request to set the cursor to |cursor|. At minimum, implementer should
|
| // call NativeCursorManagerDelegate::CommitCursor() with whatever cursor is
|
|
|