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" |