| Index: content/renderer/render_view_impl.cc
|
| diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
|
| index b045f2ecf2752308d38772f6df28142cd2a3c82f..228aa911e4907a5c7c93d3ebb6d348338ad99456 100644
|
| --- a/content/renderer/render_view_impl.cc
|
| +++ b/content/renderer/render_view_impl.cc
|
| @@ -1188,9 +1188,6 @@ bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) {
|
| OnScrollFocusedEditableNodeIntoRect)
|
| IPC_MESSAGE_HANDLER(ViewMsg_SetPageScale, OnSetPageScale)
|
| IPC_MESSAGE_HANDLER(ViewMsg_Zoom, OnZoom)
|
| - IPC_MESSAGE_HANDLER(DragMsg_SourceEnded, OnDragSourceEnded)
|
| - IPC_MESSAGE_HANDLER(DragMsg_SourceSystemDragEnded,
|
| - OnDragSourceSystemDragEnded)
|
| IPC_MESSAGE_HANDLER(ViewMsg_AllowBindings, OnAllowBindings)
|
| IPC_MESSAGE_HANDLER(ViewMsg_SetInitialFocus, OnSetInitialFocus)
|
| IPC_MESSAGE_HANDLER(ViewMsg_UpdateTargetURL_ACK, OnUpdateTargetURLAck)
|
| @@ -2119,17 +2116,6 @@ void RenderViewImpl::OnAllowBindings(int enabled_bindings_flags) {
|
| main_render_frame_->MaybeEnableMojoBindings();
|
| }
|
|
|
| -void RenderViewImpl::OnDragSourceEnded(const gfx::Point& client_point,
|
| - const gfx::Point& screen_point,
|
| - WebDragOperation op) {
|
| - webview()->dragSourceEndedAt(
|
| - ConvertWindowPointToViewport(client_point), screen_point, op);
|
| -}
|
| -
|
| -void RenderViewImpl::OnDragSourceSystemDragEnded() {
|
| - webview()->dragSourceSystemDragEnded();
|
| -}
|
| -
|
| void RenderViewImpl::OnUpdateWebPreferences(const WebPreferences& prefs) {
|
| webkit_preferences_ = prefs;
|
| ApplyWebPreferencesInternal(webkit_preferences_, webview(), compositor_deps_);
|
|
|