Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1299)

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 293093010: Rename RenderProcessHost::IsGuest to RenderProcessHost::IsIsolatedGuest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_isguest_chrome_callsites
Patch Set: Fixed interactive_ui_tests build Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698