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

Unified Diff: content/worker/worker_thread.cc

Issue 22410007: Move appcache_frontend_impl.* to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/worker/worker_thread.cc
diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc
index 5cf8dbb90971ca16ddd5827817ab8f8ac29af9d2..2a02d0d7dd4f8425b121cff27ff26875f9bfea4d 100644
--- a/content/worker/worker_thread.cc
+++ b/content/worker/worker_thread.cc
@@ -14,6 +14,7 @@
#include "content/child/web_database_observer_impl.h"
#include "content/common/worker_messages.h"
#include "content/public/common/content_switches.h"
+#include "content/renderer/appcache_frontend_impl.h"
#include "content/worker/websharedworker_stub.h"
#include "content/worker/worker_webkitplatformsupport_impl.h"
#include "ipc/ipc_sync_channel.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()));

Powered by Google App Engine
This is Rietveld 408576698