| 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 381ddeab136219540eabb3c847d5c58d4c6247b9..ec0580dbd671227ce6d5f5512b8b5c3de4de2df6 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -867,7 +867,6 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) {
|
| OnDidContentsPreferredSizeChange)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_RouteCloseEvent,
|
| OnRouteCloseEvent)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_RouteMessageEvent, OnRouteMessageEvent)
|
| IPC_MESSAGE_HANDLER(DragHostMsg_StartDragging, OnStartDragging)
|
| IPC_MESSAGE_HANDLER(DragHostMsg_UpdateDragCursor, OnUpdateDragCursor)
|
| IPC_MESSAGE_HANDLER(DragHostMsg_TargetDrop_ACK, OnTargetDropACK)
|
| @@ -1061,12 +1060,6 @@ void RenderViewHostImpl::OnRouteCloseEvent() {
|
| delegate_->RouteCloseEvent(this);
|
| }
|
|
|
| -void RenderViewHostImpl::OnRouteMessageEvent(
|
| - const ViewMsg_PostMessage_Params& params) {
|
| - // Give to the delegate to route to the active RenderViewHost.
|
| - delegate_->RouteMessageEvent(this, params);
|
| -}
|
| -
|
| void RenderViewHostImpl::OnStartDragging(
|
| const DropData& drop_data,
|
| WebDragOperationsMask drag_operations_mask,
|
|
|