From a3a7e2c07a1dcac13b004257982bb174e681693c Mon Sep 17 00:00:00 2001 From: "cpu@chromium.org" Date: Fri, 16 Sep 2011 23:07:05 +0000 Subject: Trying to reland r101435 : Better account crashes for the BrowserChildProcessHost original code review: http://codereview.chromium.org/7888070 In this change we remove renderer_host piece, which I landed already and fixes the problem which was a missing break (line 170, see patch set 2). TBR=jam BUG=96059 TEST=see bug Review URL: http://codereview.chromium.org/7919016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101595 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/gpu/gpu_process_host.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/gpu') diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc index c2af5bd..85d6b5f 100644 --- a/content/browser/gpu/gpu_process_host.cc +++ b/content/browser/gpu/gpu_process_host.cc @@ -501,7 +501,7 @@ void GpuProcessHost::OnChildDied() { content::RESULT_CODE_LAST_CODE); } - BrowserChildProcessHost::OnChildDied(); + ChildProcessHost::OnChildDied(); } void GpuProcessHost::OnProcessCrashed(int exit_code) { -- cgit v1.1