Index: content/browser/mock_content_browser_client.h |
=================================================================== |
--- content/browser/mock_content_browser_client.h (revision 121250) |
+++ content/browser/mock_content_browser_client.h (working copy) |
@@ -51,35 +51,35 @@ |
virtual SkBitmap* GetDefaultFavicon() OVERRIDE; |
virtual bool AllowAppCache(const GURL& manifest_url, |
const GURL& first_party, |
- const content::ResourceContext& context) OVERRIDE; |
+ content::ResourceContext* context) OVERRIDE; |
virtual bool AllowGetCookie(const GURL& url, |
const GURL& first_party, |
const net::CookieList& cookie_list, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
int render_process_id, |
int render_view_id) OVERRIDE; |
virtual bool AllowSetCookie(const GURL& url, |
const GURL& first_party, |
const std::string& cookie_line, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
int render_process_id, |
int render_view_id, |
net::CookieOptions* options) OVERRIDE; |
virtual bool AllowSaveLocalState( |
- const content::ResourceContext& context) OVERRIDE; |
+ content::ResourceContext* context) OVERRIDE; |
virtual bool AllowWorkerDatabase( |
const GURL& url, |
const string16& name, |
const string16& display_name, |
unsigned long estimated_size, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
virtual bool AllowWorkerFileSystem( |
const GURL& url, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
virtual net::URLRequestContext* OverrideRequestContextForURL( |
- const GURL& url, const content::ResourceContext& context) OVERRIDE; |
+ const GURL& url, content::ResourceContext* context) OVERRIDE; |
virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; |
virtual void OpenItem(const FilePath& path) OVERRIDE; |
virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; |
@@ -105,7 +105,7 @@ |
virtual WebKit::WebNotificationPresenter::Permission |
CheckDesktopNotificationPermission( |
const GURL& source_origin, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
int render_process_id) OVERRIDE; |
virtual void ShowDesktopNotification( |
const content::ShowDesktopNotificationHostMsgParams& params, |
@@ -119,10 +119,10 @@ |
virtual bool CanCreateWindow( |
const GURL& source_origin, |
WindowContainerType container_type, |
- const content::ResourceContext& context, |
+ content::ResourceContext* context, |
int render_process_id) OVERRIDE; |
virtual std::string GetWorkerProcessTitle( |
- const GURL& url, const content::ResourceContext& context) OVERRIDE; |
+ const GURL& url, content::ResourceContext* context) OVERRIDE; |
virtual void ResourceDispatcherHostCreated() OVERRIDE; |
virtual ui::Clipboard* GetClipboard() OVERRIDE; |
virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |