Index: content/public/browser/render_process_host.h |
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h |
index c9c13183c9e1bb782912f58906faf1c65be88573..e02d0a21bee3a180da9fbee6bbf824dfad222f4c 100644 |
--- a/content/public/browser/render_process_host.h |
+++ b/content/public/browser/render_process_host.h |
@@ -198,7 +198,9 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, |
virtual void AddPendingView() = 0; |
virtual void RemovePendingView() = 0; |
- // Sets a flag indicating that the process can be abnormally terminated. |
+ // Sets a flag indicating that the process can be abnormally terminated. This |
+ // will act like a refcounted system so multiple calls with 'false' will need |
+ // the same number of calls with 'true' to enable sudden termination. |
michaeln
2016/04/06 01:03:46
comment shouldn't change since the impl in render_
dmurph
2016/04/06 01:45:40
Whoops, done, thanks.
|
virtual void SetSuddenTerminationAllowed(bool allowed) = 0; |
// Returns true if the process can be abnormally terminated. |
virtual bool SuddenTerminationAllowed() const = 0; |