Chromium Code Reviews| 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..0c8507fad56764fe917160d91766b1113aad8876 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 SetIsGuestForTesting(bool is_isolated_guest) { |
|
lazyboy
2014/05/27 19:22:22
set_is_isolated_guest_for_testing()
Fady Samuel
2014/05/27 21:56:34
Done.
|
| + 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. |