summaryrefslogtreecommitdiffstats
path: root/content/common/swapped_out_messages.cc
diff options
context:
space:
mode:
authornasko <nasko@chromium.org>2015-02-05 20:15:33 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-06 04:17:17 +0000
commitb985af1c7d2647db123a76370ea5a09e41151e61 (patch)
treee088c29a81542a6efb57ce2966bb414ad2e68532 /content/common/swapped_out_messages.cc
parentdd6141829c1ad86297b0a2e7faea037ff110956b (diff)
downloadchromium_src-b985af1c7d2647db123a76370ea5a09e41151e61.zip
chromium_src-b985af1c7d2647db123a76370ea5a09e41151e61.tar.gz
chromium_src-b985af1c7d2647db123a76370ea5a09e41151e61.tar.bz2
Move the RenderProcessGone IPC from RenderViewHost to RenderFrameHost
BUG=304341,450799 Review URL: https://codereview.chromium.org/894843003 Cr-Commit-Position: refs/heads/master@{#314974}
Diffstat (limited to 'content/common/swapped_out_messages.cc')
-rw-r--r--content/common/swapped_out_messages.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/swapped_out_messages.cc b/content/common/swapped_out_messages.cc
index 6c872d4..3cb20a5 100644
--- a/content/common/swapped_out_messages.cc
+++ b/content/common/swapped_out_messages.cc
@@ -24,7 +24,6 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) {
case FrameHostMsg_OpenURL::ID:
case ViewHostMsg_Focus::ID:
// Handled by RenderViewHost.
- case ViewHostMsg_RenderProcessGone::ID:
case ViewHostMsg_ClosePage_ACK::ID:
case ViewHostMsg_SwapCompositorFrame::ID:
// Handled by WorkerMessageFilter (or by SharedWorkerMessageFilter when
@@ -36,6 +35,7 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) {
// Handled by RenderFrameHost.
case FrameHostMsg_BeforeUnload_ACK::ID:
case FrameHostMsg_SwapOut_ACK::ID:
+ case FrameHostMsg_RenderProcessGone::ID:
// Frame detach must occur after the RenderView has swapped out.
case FrameHostMsg_Detach::ID:
case FrameHostMsg_DomOperationResponse::ID: