| Index: views/controls/textfield/native_textfield_views.cc
|
| diff --git a/views/controls/textfield/native_textfield_views.cc b/views/controls/textfield/native_textfield_views.cc
|
| index 95434d5fb915c8f5f7354ddbfbd145795459588f..eecaae29cdb46debad6400d73d99b606f59d0e26 100644
|
| --- a/views/controls/textfield/native_textfield_views.cc
|
| +++ b/views/controls/textfield/native_textfield_views.cc
|
| @@ -288,6 +288,10 @@ gfx::NativeCursor NativeTextfieldViews::GetCursor(const MouseEvent& event) {
|
| static HCURSOR ibeam = LoadCursor(NULL, IDC_IBEAM);
|
| static HCURSOR arrow = LoadCursor(NULL, IDC_ARROW);
|
| return text_cursor ? ibeam : arrow;
|
| +#elif defined(USE_AURA)
|
| + // TODO(saintlou):
|
| + (void)text_cursor;
|
| + return NULL;
|
| #else
|
| return text_cursor ? gfx::GetCursor(GDK_XTERM) : NULL;
|
| #endif
|
|
|