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

Unified Diff: content/public/browser/render_process_host.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/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.
//
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698