Chromium Code Reviews| 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 acdaa779949c00bbfe2008b5b3b7d55ca05575be..827eb8aaefcaf3b232658bff4d6148359c494554 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" |
| @@ -2073,9 +2074,9 @@ void RenderProcessHostImpl::ProcessDied(bool already_dead, |
| IDMap<IPC::Listener>::iterator iter(&listeners_); |
|
Charlie Reis
2015/02/03 01:06:35
I'm guessing we don't have a list of the frames?
nasko
2015/02/04 16:51:31
Does it matter what the types of the listeners are
|
| 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(); |
| } |