summaryrefslogtreecommitdiffstats
path: root/content/port
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/port
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/port')
-rw-r--r--content/port/browser/render_widget_host_view_port.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h
index 6aa03de..29bc3ae 100644
--- a/content/port/browser/render_widget_host_view_port.h
+++ b/content/port/browser/render_widget_host_view_port.h
@@ -138,8 +138,8 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView,
const ui::LatencyInfo& latency_info) = 0;
// Notifies the View that the renderer has ceased to exist.
- virtual void RenderViewGone(base::TerminationStatus status,
- int error_code) = 0;
+ virtual void RenderProcessGone(base::TerminationStatus status,
+ int error_code) = 0;
// Tells the View to destroy itself.
virtual void Destroy() = 0;