Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1547)

Unified Diff: content/public/browser/render_process_host_observer.h

Issue 1245903004: Switch RenderFrameHostManager to use RenderProcessHostObserver, remove NOTIFICATION_RENDERER_PROCES… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/render_process_host_observer.h
diff --git a/content/public/browser/render_process_host_observer.h b/content/public/browser/render_process_host_observer.h
index 9414f57a6e6d3e42d9996be33fd1f89fc89d2a75..c4d4811ca91e16f8e2a86ce75ce2e48ed58a80fd 100644
--- a/content/public/browser/render_process_host_observer.h
+++ b/content/public/browser/render_process_host_observer.h
@@ -17,6 +17,10 @@ class RenderProcessHost;
// in RenderProcessHost lifecycle events.
class CONTENT_EXPORT RenderProcessHostObserver {
public:
+ // This method is invoked when the process is going to exit and should not be
+ // used for further navigations.
ncarter (slow) 2015/07/21 19:07:15 I think this gets a little confusing, especially w
Avi (use Gerrit) 2015/07/21 20:45:16 Done.
+ virtual void RenderProcessWillExit(RenderProcessHost* host) {}
+
// This method is invoked when the process of the observed RenderProcessHost
// exits (either normally or with a crash). To determine if the process closed
// normally or crashed, examine the |status| parameter.

Powered by Google App Engine
This is Rietveld 408576698