diff options
author | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-10 02:40:52 +0000 |
---|---|---|
committer | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-10 02:40:52 +0000 |
commit | 58d5cfe950eae22225d3c7e10c547a5a8944a557 (patch) | |
tree | 864117e7baeae0e593a4ee2e0e00177ac1d9ba6b /content/browser/renderer_host/test_render_view_host.h | |
parent | 55f398244985990207b8861cde1da27039285adb (diff) | |
download | chromium_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/browser/renderer_host/test_render_view_host.h')
-rw-r--r-- | content/browser/renderer_host/test_render_view_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/renderer_host/test_render_view_host.h b/content/browser/renderer_host/test_render_view_host.h index bdafb36..d8a3b7a 100644 --- a/content/browser/renderer_host/test_render_view_host.h +++ b/content/browser/renderer_host/test_render_view_host.h @@ -110,8 +110,8 @@ class TestRenderWidgetHostView : public RenderWidgetHostViewBase { const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& rects, const ui::LatencyInfo& latency_info) OVERRIDE {} - virtual void RenderViewGone(base::TerminationStatus status, - int error_code) OVERRIDE; + virtual void RenderProcessGone(base::TerminationStatus status, + int error_code) OVERRIDE; virtual void WillDestroyRenderWidget(RenderWidgetHost* rwh) { } virtual void Destroy() OVERRIDE; virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE {} |