| Index: content/public/browser/browser_context.h
|
| diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
|
| index d4e80b218a3e79e4fdc658a959467f3568591d79..0a022e4066e8162fe546133dfb22acf869ed1398 100644
|
| --- a/content/public/browser/browser_context.h
|
| +++ b/content/public/browser/browser_context.h
|
| @@ -31,7 +31,7 @@ class SpecialStoragePolicy;
|
|
|
| namespace content {
|
|
|
| -class BrowserPluginGuestManagerDelegate;
|
| +class BrowserPluginGuestManager;
|
| class DownloadManager;
|
| class DownloadManagerDelegate;
|
| class GeolocationPermissionContext;
|
| @@ -170,9 +170,8 @@ 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 delegate for this context.
|
| - virtual content::BrowserPluginGuestManagerDelegate*
|
| - GetGuestManagerDelegate() = 0;
|
| + // Returns the guest manager for this context.
|
| + virtual BrowserPluginGuestManager* GetGuestManager() = 0;
|
|
|
| // Returns a special storage policy implementation, or NULL.
|
| virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() = 0;
|
|
|