| Index: ui/views/controls/link.cc
|
| diff --git a/ui/views/controls/link.cc b/ui/views/controls/link.cc
|
| index 49a9d838ada8df04cf6b33babf3ced59ec32c86b..a7aaa5ca9bbe34d9f66e41b51d9671bac0d9a518 100644
|
| --- a/ui/views/controls/link.cc
|
| +++ b/ui/views/controls/link.cc
|
| @@ -16,7 +16,7 @@
|
| #include "ui/views/events/event.h"
|
|
|
| #if defined(USE_AURA)
|
| -#include "ui/aura/cursor.h"
|
| +#include "ui/base/cursor/cursor.h"
|
| #endif
|
|
|
| namespace views {
|
| @@ -47,7 +47,7 @@ gfx::NativeCursor Link::GetCursor(const MouseEvent& event) {
|
| if (!enabled())
|
| return gfx::kNullCursor;
|
| #if defined(USE_AURA)
|
| - return aura::kCursorHand;
|
| + return ui::kCursorHand;
|
| #elif defined(OS_WIN)
|
| static HCURSOR g_hand_cursor = LoadCursor(NULL, IDC_HAND);
|
| return g_hand_cursor;
|
|
|