| Index: content/browser/renderer_host/render_view_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
|
| index 68cc3d7eba7cb2a29fff43678ce75849be6af222..da14592483ae4c681b7fbec37c4a1ab07d2018d4 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -773,7 +773,6 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) {
|
| OnDidContentsPreferredSizeChange)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_RouteCloseEvent,
|
| OnRouteCloseEvent)
|
| - IPC_MESSAGE_HANDLER(DragHostMsg_UpdateDragCursor, OnUpdateDragCursor)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_TakeFocus, OnTakeFocus)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_FocusedNodeChanged, OnFocusedNodeChanged)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ClosePage_ACK, OnClosePageACK)
|
| @@ -915,12 +914,6 @@ void RenderViewHostImpl::OnRouteCloseEvent() {
|
| delegate_->RouteCloseEvent(this);
|
| }
|
|
|
| -void RenderViewHostImpl::OnUpdateDragCursor(WebDragOperation current_op) {
|
| - RenderViewHostDelegateView* view = delegate_->GetDelegateView();
|
| - if (view)
|
| - view->UpdateDragCursor(current_op);
|
| -}
|
| -
|
| void RenderViewHostImpl::OnTakeFocus(bool reverse) {
|
| RenderViewHostDelegateView* view = delegate_->GetDelegateView();
|
| if (view)
|
|
|