diff options
Diffstat (limited to 'content/shell')
-rw-r--r-- | content/shell/shell_content_browser_client.cc | 8 | ||||
-rw-r--r-- | content/shell/shell_content_browser_client.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/content/shell/shell_content_browser_client.cc b/content/shell/shell_content_browser_client.cc index 98301f1..bffe450 100644 --- a/content/shell/shell_content_browser_client.cc +++ b/content/shell/shell_content_browser_client.cc @@ -163,19 +163,19 @@ bool ShellContentBrowserClient::AllowSaveLocalState( } bool ShellContentBrowserClient::AllowWorkerDatabase( - int worker_route_id, const GURL& url, const string16& name, const string16& display_name, unsigned long estimated_size, - WorkerProcessHost* worker_process_host) { + const content::ResourceContext& context, + const std::vector<std::pair<int, int> >& render_views) { return true; } bool ShellContentBrowserClient::AllowWorkerFileSystem( - int worker_route_id, const GURL& url, - WorkerProcessHost* worker_process_host) { + const content::ResourceContext& context, + const std::vector<std::pair<int, int> >& render_views) { return true; } diff --git a/content/shell/shell_content_browser_client.h b/content/shell/shell_content_browser_client.h index 26ccebe..49fe5a1 100644 --- a/content/shell/shell_content_browser_client.h +++ b/content/shell/shell_content_browser_client.h @@ -74,16 +74,16 @@ class ShellContentBrowserClient : public ContentBrowserClient { virtual bool AllowSaveLocalState( const content::ResourceContext& context) OVERRIDE; virtual bool AllowWorkerDatabase( - int worker_route_id, const GURL& url, const string16& name, const string16& display_name, unsigned long estimated_size, - WorkerProcessHost* worker_process_host) OVERRIDE; + const content::ResourceContext& context, + const std::vector<std::pair<int, int> >& render_views) OVERRIDE; virtual bool AllowWorkerFileSystem( - int worker_route_id, const GURL& url, - WorkerProcessHost* worker_process_host) OVERRIDE; + const 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; virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; |