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

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: Addressed comments 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..4e0bee4822b3a630f7181052408579ac5f141980 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 IsSIsolatedGuest is false.
nasko 2014/05/28 16:29:13 nit: IsIsolatedGuest is misspelled.
fsamuel 2014/05/28 16:37:01 Done.
+ virtual bool IsIsolatedGuest() const = 0;
// Returns the storage partition associated with this process.
//

Powered by Google App Engine
This is Rietveld 408576698