| Index: content/browser/renderer_host/render_widget_host_view_android.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
|
| index c74066822d18317de92f74007a8671c337547cd7..cb245de16819699a4bf7e6603fef3022d450ae5f 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_android.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_android.cc
|
| @@ -730,7 +730,10 @@ float RenderWidgetHostViewAndroid::GetBottomControlsHeight() const {
|
| }
|
|
|
| void RenderWidgetHostViewAndroid::UpdateCursor(const WebCursor& cursor) {
|
| - // There are no cursors on Android.
|
| + CursorInfo cursor_info;
|
| + cursor.GetCursorInfo(&cursor_info);
|
| + view_.OnCursorChanged(cursor_info.type, cursor_info.custom_image,
|
| + cursor_info.hotspot);
|
| }
|
|
|
| void RenderWidgetHostViewAndroid::SetIsLoading(bool is_loading) {
|
|
|