| 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..4afb7a2661f218e1da7c551bc3757b568df9105d 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 IsIsolatedGuest is false.
|
| + virtual bool IsIsolatedGuest() const = 0;
|
|
|
| // Returns the storage partition associated with this process.
|
| //
|
|
|