Chromium Code Reviews| 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 05ad072de9e48674af4b725b2bc3ce5d6657c06f..6cdbed74e76147fb1d579959b83bd548235b572d 100644 |
| --- a/content/browser/renderer_host/render_widget_host_impl.cc |
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc |
| @@ -48,6 +48,7 @@ |
| #include "content/browser/renderer_host/render_widget_resize_helper.h" |
| #include "content/common/content_constants_internal.h" |
| #include "content/common/cursors/webcursor.h" |
| +#include "content/common/frame_messages.h" |
| #include "content/common/gpu/gpu_messages.h" |
| #include "content/common/host_shared_bitmap_manager.h" |
| #include "content/common/input_messages.h" |
| @@ -444,12 +445,12 @@ bool RenderWidgetHostImpl::IsRenderView() const { |
| bool RenderWidgetHostImpl::OnMessageReceived(const IPC::Message &msg) { |
| bool handled = true; |
| IPC_BEGIN_MESSAGE_MAP(RenderWidgetHostImpl, msg) |
| + IPC_MESSAGE_HANDLER(FrameHostMsg_RenderProcessGone, OnRenderProcessGone) |
|
Charlie Reis
2015/02/03 01:06:35
Huh. I guess we'll need to handle some FrameHostM
nasko
2015/02/04 16:51:31
Well, it is not a frame specific message to be hon
|
| IPC_MESSAGE_HANDLER(InputHostMsg_QueueSyntheticGesture, |
| OnQueueSyntheticGesture) |
| IPC_MESSAGE_HANDLER(InputHostMsg_ImeCancelComposition, |
| OnImeCancelComposition) |
| IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewReady, OnRenderViewReady) |
| - IPC_MESSAGE_HANDLER(ViewHostMsg_RenderProcessGone, OnRenderProcessGone) |
| IPC_MESSAGE_HANDLER(ViewHostMsg_Close, OnClose) |
| IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateScreenRects_ACK, |
| OnUpdateScreenRectsAck) |