Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1822)

Unified Diff: content/renderer/render_thread_impl.cc

Issue 22410007: Move appcache_frontend_impl.* to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index e341e5df124e09832fb1efd52d4244231690a128..b5f35b06eea55ab98b39c2f2c9bbbfc9230035e7 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -27,6 +27,7 @@
#include "base/threading/thread_restrictions.h"
#include "base/values.h"
#include "content/child/appcache_dispatcher.h"
+#include "content/child/appcache_frontend_impl.h"
#include "content/child/child_histogram_message_filter.h"
#include "content/child/db_message_filter.h"
#include "content/child/indexed_db/indexed_db_dispatcher.h"
@@ -109,7 +110,6 @@
#include "v8/include/v8.h"
#include "webkit/child/worker_task_runner.h"
#include "webkit/glue/webkit_glue.h"
-#include "webkit/renderer/appcache/appcache_frontend_impl.h"
#include "webkit/renderer/compositor_bindings/web_external_bitmap_impl.h"
#if defined(OS_WIN)
@@ -348,7 +348,7 @@ void RenderThreadImpl::Init() {
shutdown_event_ = NULL;
appcache_dispatcher_.reset(
- new AppCacheDispatcher(Get(), new appcache::AppCacheFrontendImpl()));
+ new AppCacheDispatcher(Get(), new AppCacheFrontendImpl()));
dom_storage_dispatcher_.reset(new DomStorageDispatcher());
main_thread_indexed_db_dispatcher_.reset(new IndexedDBDispatcher(
thread_safe_sender()));

Powered by Google App Engine
This is Rietveld 408576698