summaryrefslogtreecommitdiffstats
path: root/content/public/browser/render_process_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/browser/render_process_host.h')
-rw-r--r--content/public/browser/render_process_host.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 6b128dc..7f5e3b7 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -93,6 +93,10 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
virtual void WidgetHidden() = 0;
virtual int VisibleWidgetCount() const = 0;
+ // Indicates whether the current RenderProcessHost associated with a guest
+ // renderer process.
+ virtual bool IsGuest() const = 0;
+
// Try to shutdown the associated renderer process as fast as possible.
// If this renderer has any RenderViews with unload handlers, then this
// function does nothing. The current implementation uses TerminateProcess.