diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 05:50:50 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 05:50:50 +0000 |
commit | a8cb3b73bc9388cf3dfaf99203cb85dbed2bc7ce (patch) | |
tree | cccff9b18454f2fe46f41fb7cad33e55fe239c4e /content/worker | |
parent | 6d62ae85960106307ff8deb1652a8bbe2b24086d (diff) | |
download | chromium_src-a8cb3b73bc9388cf3dfaf99203cb85dbed2bc7ce.zip chromium_src-a8cb3b73bc9388cf3dfaf99203cb85dbed2bc7ce.tar.gz chromium_src-a8cb3b73bc9388cf3dfaf99203cb85dbed2bc7ce.tar.bz2 |
Move appcache_frontend_impl.* to content/child/
BUG=265753
TEST=content_unittests
R=jam@chromium.org,jamesr@chromium.org
Review URL: https://chromiumcodereview.appspot.com/22410007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/DEPS | 1 | ||||
-rw-r--r-- | content/worker/worker_thread.cc | 6 | ||||
-rw-r--r-- | content/worker/worker_webapplicationcachehost_impl.cc | 2 | ||||
-rw-r--r-- | content/worker/worker_webapplicationcachehost_impl.h | 5 |
4 files changed, 6 insertions, 8 deletions
diff --git a/content/worker/DEPS b/content/worker/DEPS index 34e8b17..24a1df50 100644 --- a/content/worker/DEPS +++ b/content/worker/DEPS @@ -1,7 +1,6 @@ include_rules = [ "+content/child", "+sandbox/win/src", - "+webkit/appcache", "+webkit/glue", ] diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc index 5cf8dbb..4cabcb4 100644 --- a/content/worker/worker_thread.cc +++ b/content/worker/worker_thread.cc @@ -7,7 +7,8 @@ #include "base/command_line.h" #include "base/lazy_instance.h" #include "base/threading/thread_local.h" -#include "content/child/appcache_dispatcher.h" +#include "content/child/appcache/appcache_dispatcher.h" +#include "content/child/appcache/appcache_frontend_impl.h" #include "content/child/db_message_filter.h" #include "content/child/indexed_db/indexed_db_message_filter.h" #include "content/child/runtime_features.h" @@ -22,7 +23,6 @@ #include "third_party/WebKit/public/web/WebKit.h" #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" #include "webkit/glue/webkit_glue.h" -#include "webkit/renderer/appcache/appcache_frontend_impl.h" using WebKit::WebRuntimeFeatures; @@ -40,7 +40,7 @@ WorkerThread::WorkerThread() { WebKit::initialize(webkit_platform_support_.get()); appcache_dispatcher_.reset( - new AppCacheDispatcher(this, new appcache::AppCacheFrontendImpl())); + new AppCacheDispatcher(this, new AppCacheFrontendImpl())); web_database_observer_impl_.reset( new WebDatabaseObserverImpl(sync_message_filter())); diff --git a/content/worker/worker_webapplicationcachehost_impl.cc b/content/worker/worker_webapplicationcachehost_impl.cc index ef0c966..9283906 100644 --- a/content/worker/worker_webapplicationcachehost_impl.cc +++ b/content/worker/worker_webapplicationcachehost_impl.cc @@ -4,7 +4,7 @@ #include "content/worker/worker_webapplicationcachehost_impl.h" -#include "content/child/appcache_dispatcher.h" +#include "content/child/appcache/appcache_dispatcher.h" #include "content/worker/worker_thread.h" namespace content { diff --git a/content/worker/worker_webapplicationcachehost_impl.h b/content/worker/worker_webapplicationcachehost_impl.h index 53482e1..2360cb3 100644 --- a/content/worker/worker_webapplicationcachehost_impl.h +++ b/content/worker/worker_webapplicationcachehost_impl.h @@ -5,7 +5,7 @@ #ifndef CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_ #define CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_ -#include "webkit/renderer/appcache/web_application_cache_host_impl.h" +#include "content/child/appcache/web_application_cache_host_impl.h" namespace content { @@ -26,8 +26,7 @@ struct WorkerAppCacheInitInfo { } }; -class WorkerWebApplicationCacheHostImpl - : public appcache::WebApplicationCacheHostImpl { +class WorkerWebApplicationCacheHostImpl : public WebApplicationCacheHostImpl { public: WorkerWebApplicationCacheHostImpl( const WorkerAppCacheInitInfo& init_info, |