Index: content/browser/renderer_host/render_widget_host_impl.cc |
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc |
index 01b7e2664330c23006e069dd9ce18dad588ac577..61bad212a2e51e39636275945692261feeb1b04e 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.cc |
+++ b/content/browser/renderer_host/render_widget_host_impl.cc |
@@ -1446,6 +1446,12 @@ void RenderWidgetHostImpl::FilterDropData(DropData* drop_data) { |
} |
} |
+void RenderWidgetHostImpl::SetCursor(const CursorInfo& cursor_info) { |
+ WebCursor cursor; |
+ cursor.InitFromCursorInfo(cursor_info); |
+ SetCursor(cursor); |
+} |
+ |
void RenderWidgetHostImpl::NotifyScreenInfoChanged() { |
if (delegate_) |
delegate_->ScreenInfoChanged(); |