diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 00:45:35 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-12 00:45:35 +0000 |
commit | 5c5a88eb6550c82143afec70d114a68f2bd8635b (patch) | |
tree | 954f56498cbd9cb4e1bb8032e860b50777332685 /content/shell/shell_content_browser_client.h | |
parent | 581ac1e0a6c31f93a4415cb840f24f6dbb7d969d (diff) | |
download | chromium_src-5c5a88eb6550c82143afec70d114a68f2bd8635b.zip chromium_src-5c5a88eb6550c82143afec70d114a68f2bd8635b.tar.gz chromium_src-5c5a88eb6550c82143afec70d114a68f2bd8635b.tar.bz2 |
Remove includes of worker_messages.h from chrome code, since that's an internal detail of content.
BUG=98716
Review URL: http://codereview.chromium.org/8514004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109746 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell_content_browser_client.h')
-rw-r--r-- | content/shell/shell_content_browser_client.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/content/shell/shell_content_browser_client.h b/content/shell/shell_content_browser_client.h index e8aa52f..3c60622 100644 --- a/content/shell/shell_content_browser_client.h +++ b/content/shell/shell_content_browser_client.h @@ -45,7 +45,6 @@ class ShellContentBrowserClient : public ContentBrowserClient virtual void BrowserRenderProcessHostCreated( BrowserRenderProcessHost* host) OVERRIDE; virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; - virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE; virtual WebUIFactory* GetWebUIFactory() OVERRIDE; virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, const GURL& url) OVERRIDE; @@ -84,6 +83,17 @@ class ShellContentBrowserClient : public ContentBrowserClient net::CookieOptions* options) OVERRIDE; 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; + virtual bool AllowWorkerFileSystem( + int worker_route_id, + const GURL& url, + WorkerProcessHost* worker_process_host) OVERRIDE; virtual net::URLRequestContext* OverrideRequestContextForURL( const GURL& url, const content::ResourceContext& context) OVERRIDE; virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; |