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

Unified Diff: content/public/browser/browser_context.h

Issue 258373002: Towards moving guest management to chrome: Introduce GuestViewManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed John's comments Created 6 years, 8 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/browser_context.h
diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
index 0cb1b5b438e32a7a6302a4fba25c49e5c47d442d..084f592d956d23541171a503f1675d9f178bc636 100644
--- a/content/public/browser/browser_context.h
+++ b/content/public/browser/browser_context.h
@@ -31,6 +31,7 @@ class SpecialStoragePolicy;
namespace content {
+class BrowserPluginGuestManagerDelegate;
class DownloadManager;
class DownloadManagerDelegate;
class GeolocationPermissionContext;
@@ -169,6 +170,10 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
// return NULL, in which case geolocation requests will always be allowed.
virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0;
+ // Returns the guest manager for this context.
jam 2014/05/02 22:24:47 guest manager delegate?
Fady Samuel 2014/05/03 00:16:59 Done.
+ virtual content::BrowserPluginGuestManagerDelegate*
+ GetGuestManagerDelegate() = 0;
+
// Returns a special storage policy implementation, or NULL.
virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698