Index: chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc |
diff --git a/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc b/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc |
index cdc9e9ee80f306a80c9aec96f9c14c51d1b236d1..a388d97586d7d1a93723f8285138be0e2a6d40f5 100644 |
--- a/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc |
+++ b/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc |
@@ -357,7 +357,7 @@ IN_PROC_BROWSER_TEST_F(ChromeRenderProcessHostTest, |
} |
// This class's goal is to close the browser window when a renderer process has |
-// crashed. It does so by monitoring WebContents for RenderViewGone event and |
+// crashed. It does so by monitoring WebContents for RenderProcessGone event and |
// closing the passed in TabStripModel. This is used in the following test case. |
class WindowDestroyer : public content::WebContentsObserver { |
public: |
@@ -366,7 +366,7 @@ class WindowDestroyer : public content::WebContentsObserver { |
tab_strip_model_(model) { |
} |
- virtual void RenderViewGone(base::TerminationStatus status) OVERRIDE { |
+ virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE { |
// Wait for the window to be destroyed, which will ensure all other |
// RenderViewHost objects are deleted before we return and proceed with |
// the next iteration of notifications. |