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

Unified Diff: content/common/indexed_db/indexed_db_dispatcher.cc

Issue 9368053: Move indexed db files from content/renderer to content/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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/common/indexed_db/indexed_db_dispatcher.cc
diff --git a/content/renderer/indexed_db/indexed_db_dispatcher.cc b/content/common/indexed_db/indexed_db_dispatcher.cc
similarity index 98%
rename from content/renderer/indexed_db/indexed_db_dispatcher.cc
rename to content/common/indexed_db/indexed_db_dispatcher.cc
index 2770fbbeb81254065242e8f67961014a22623b47..e7dec24f80a57ace67a92965d74b11251953b8f6 100644
--- a/content/renderer/indexed_db/indexed_db_dispatcher.cc
+++ b/content/common/indexed_db/indexed_db_dispatcher.cc
@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/renderer/indexed_db/indexed_db_dispatcher.h"
+#include "content/common/indexed_db/indexed_db_dispatcher.h"
#include "base/lazy_instance.h"
#include "base/threading/thread_local.h"
#include "content/common/indexed_db/indexed_db_messages.h"
-#include "content/renderer/indexed_db/renderer_webidbcursor_impl.h"
-#include "content/renderer/indexed_db/renderer_webidbdatabase_impl.h"
-#include "content/renderer/indexed_db/renderer_webidbindex_impl.h"
-#include "content/renderer/indexed_db/renderer_webidbobjectstore_impl.h"
-#include "content/renderer/indexed_db/renderer_webidbtransaction_impl.h"
-#include "content/renderer/render_thread_impl.h"
+#include "content/common/indexed_db/proxy_webidbcursor_impl.h"
+#include "content/common/indexed_db/proxy_webidbdatabase_impl.h"
+#include "content/common/indexed_db/proxy_webidbindex_impl.h"
+#include "content/common/indexed_db/proxy_webidbobjectstore_impl.h"
+#include "content/common/indexed_db/proxy_webidbtransaction_impl.h"
+#include "content/common/child_thread.h"
jsbell 2012/02/10 18:57:29 Nit: include ordering
dgrogan 2012/02/10 19:57:20 Done. (I thought we had a presubmit check for tha
#include "content/renderer/render_view_impl.h"
dgrogan 2012/02/10 02:22:30 This is the only layer violation that I know of.
jsbell 2012/02/10 18:57:29 And only used for the RenderViewImpl::FromWebView(
dgrogan 2012/02/10 19:57:20 That's right.
#include "ipc/ipc_channel.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"

Powered by Google App Engine
This is Rietveld 408576698