summaryrefslogtreecommitdiffstats
path: root/content/common/swapped_out_messages.cc
diff options
context:
space:
mode:
authornasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-10 02:40:52 +0000
committernasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-10 02:40:52 +0000
commit58d5cfe950eae22225d3c7e10c547a5a8944a557 (patch)
tree864117e7baeae0e593a4ee2e0e00177ac1d9ba6b /content/common/swapped_out_messages.cc
parent55f398244985990207b8861cde1da27039285adb (diff)
downloadchromium_src-58d5cfe950eae22225d3c7e10c547a5a8944a557.zip
chromium_src-58d5cfe950eae22225d3c7e10c547a5a8944a557.tar.gz
chromium_src-58d5cfe950eae22225d3c7e10c547a5a8944a557.tar.bz2
Rename RenderViewGone IPC/methods to better reflect reality.
The RenderViewGone IPC and methods are incorrectly named, as those are used when a renderer process has died. Since we are passing in termination status around and usually iterating over all Render{Widget|View}Host in a specific process, it actually applies to the whole process. This CL renames all applicable instances of this method and the IPC message associated with it. BUG=258087 Review URL: https://chromiumcodereview.appspot.com/18339006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210727 0039d316-1c4b-4281-b951-d872f2087c98
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 0a3e065..5048265 100644
--- a/content/common/swapped_out_messages.cc
+++ b/content/common/swapped_out_messages.cc
@@ -24,7 +24,7 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) {
case ViewHostMsg_OpenURL::ID:
case ViewHostMsg_Focus::ID:
// Handled by RenderView.
- case ViewHostMsg_RenderViewGone::ID:
+ case ViewHostMsg_RenderProcessGone::ID:
case ViewHostMsg_ShouldClose_ACK::ID:
case ViewHostMsg_SwapOut_ACK::ID:
case ViewHostMsg_ClosePage_ACK::ID: