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 66a96eca5c6aca95d61c3ce68656669350f7c3fb..4e0bee4822b3a630f7181052408579ac5f141980 100644 |
--- a/content/public/browser/render_process_host.h |
+++ b/content/public/browser/render_process_host.h |
@@ -95,9 +95,11 @@ 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; |
+ // Indicates whether the current RenderProcessHost is associated with an |
+ // isolated guest renderer process. Not all guest renderers are created equal. |
+ // A guest, as indicated by BrowserPluginGuest::IsGuest, may coexist with |
+ // other non-guest renderers in the same process if IsSIsolatedGuest is false. |
nasko
2014/05/28 16:29:13
nit: IsIsolatedGuest is misspelled.
fsamuel
2014/05/28 16:37:01
Done.
|
+ virtual bool IsIsolatedGuest() const = 0; |
// Returns the storage partition associated with this process. |
// |