| Index: ui/views/controls/textfield/native_textfield_views.cc
|
| diff --git a/ui/views/controls/textfield/native_textfield_views.cc b/ui/views/controls/textfield/native_textfield_views.cc
|
| index 298b9ff4258b6f9ffa1435e2aedad33b499e5eac..299d5a7de1d299fc930f2d0427f03769ba11fafb 100644
|
| --- a/ui/views/controls/textfield/native_textfield_views.cc
|
| +++ b/ui/views/controls/textfield/native_textfield_views.cc
|
| @@ -39,7 +39,7 @@
|
| #include "ui/views/widget/widget.h"
|
|
|
| #if defined(USE_AURA)
|
| -#include "ui/aura/cursor.h"
|
| +#include "ui/base/cursor/cursor.h"
|
| #endif
|
|
|
| namespace {
|
| @@ -265,7 +265,7 @@ gfx::NativeCursor NativeTextfieldViews::GetCursor(const MouseEvent& event) {
|
| bool drag_event = event.type() == ui::ET_MOUSE_DRAGGED;
|
| bool text_cursor = !initiating_drag_ && (drag_event || !in_selection);
|
| #if defined(USE_AURA)
|
| - return text_cursor ? aura::kCursorIBeam : aura::kCursorNull;
|
| + return text_cursor ? ui::kCursorIBeam : ui::kCursorNull;
|
| #elif defined(OS_WIN)
|
| static HCURSOR ibeam = LoadCursor(NULL, IDC_IBEAM);
|
| static HCURSOR arrow = LoadCursor(NULL, IDC_ARROW);
|
|
|