Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index 0acb4afff71c59b2f6f14818814d2a0f97b90a9c..6a1af563be113875d8f554e2200a54da6f338b2c 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -107,6 +107,7 @@ |
#include "content/common/child_process_host_impl.h" |
#include "content/common/child_process_messages.h" |
#include "content/common/content_switches_internal.h" |
+#include "content/common/frame_messages.h" |
#include "content/common/gpu/gpu_memory_buffer_factory.h" |
#include "content/common/gpu/gpu_messages.h" |
#include "content/common/mojo/mojo_messages.h" |
@@ -2077,9 +2078,9 @@ void RenderProcessHostImpl::ProcessDied(bool already_dead, |
IDMap<IPC::Listener>::iterator iter(&listeners_); |
while (!iter.IsAtEnd()) { |
iter.GetCurrentValue()->OnMessageReceived( |
- ViewHostMsg_RenderProcessGone(iter.GetCurrentKey(), |
- static_cast<int>(status), |
- exit_code)); |
+ FrameHostMsg_RenderProcessGone(iter.GetCurrentKey(), |
+ static_cast<int>(status), |
+ exit_code)); |
iter.Advance(); |
} |