| Index: content/browser/renderer_host/render_process_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
|
| index a0be1cf20a767c45a6879480478f803a08432735..99b8f94d4d3422e14053bc23fb94c6777a4c0881 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -79,7 +79,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| public:
|
| RenderProcessHostImpl(BrowserContext* browser_context,
|
| StoragePartitionImpl* storage_partition_impl,
|
| - bool is_guest);
|
| + bool is_isolated_guest);
|
| virtual ~RenderProcessHostImpl();
|
|
|
| // RenderProcessHost implementation (public portion).
|
| @@ -97,7 +97,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| virtual void WidgetRestored() OVERRIDE;
|
| virtual void WidgetHidden() OVERRIDE;
|
| virtual int VisibleWidgetCount() const OVERRIDE;
|
| - virtual bool IsGuest() const OVERRIDE;
|
| + virtual bool IsIsolatedGuest() const OVERRIDE;
|
| virtual StoragePartition* GetStoragePartition() const OVERRIDE;
|
| virtual bool FastShutdownIfPossible() OVERRIDE;
|
| virtual void DumpHandles() OVERRIDE;
|
| @@ -222,8 +222,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| return message_port_message_filter_;
|
| }
|
|
|
| - void SetIsGuestForTesting(bool is_guest) {
|
| - is_guest_ = is_guest;
|
| + void set_is_isolated_guest_for_testing(bool is_isolated_guest) {
|
| + is_isolated_guest_ = is_isolated_guest;
|
| }
|
|
|
| // Called when the existence of the other renderer process which is connected
|
| @@ -384,7 +384,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
|
|
| // Indicates whether this is a RenderProcessHost of a Browser Plugin guest
|
| // renderer.
|
| - bool is_guest_;
|
| + bool is_isolated_guest_;
|
|
|
| // Forwards messages between WebRTCInternals in the browser process
|
| // and PeerConnectionTracker in the renderer process.
|
|
|