diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 15:05:36 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 15:05:36 +0000 |
commit | 1570ac53204f1f4b35641a6f89d87b552fac0e13 (patch) | |
tree | e2e8df504030f0ffe8b778b9659d9462c4a0eb28 /content/worker | |
parent | bcae1798b2fa6ffa536a85c5bb070bfae16fdfa5 (diff) | |
download | chromium_src-1570ac53204f1f4b35641a6f89d87b552fac0e13.zip chromium_src-1570ac53204f1f4b35641a6f89d87b552fac0e13.tar.gz chromium_src-1570ac53204f1f4b35641a6f89d87b552fac0e13.tar.bz2 |
Move indexeddb "common child" code out of content/common.
This is code that only runs in renderers or workers, the stuff
that talks to the blink DOM.
BUG=237249
Review URL: https://chromiumcodereview.appspot.com/15566008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201518 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 | 2 | ||||
-rw-r--r-- | content/worker/worker_webkitplatformsupport_impl.cc | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/content/worker/DEPS b/content/worker/DEPS index ccf9e2b..fe035fa 100644 --- a/content/worker/DEPS +++ b/content/worker/DEPS @@ -1,4 +1,5 @@ include_rules = [ + "+content/common_child", "+sandbox/win/src", "+webkit/appcache", "+webkit/glue", diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc index b51e7ab..73aaf82 100644 --- a/content/worker/worker_thread.cc +++ b/content/worker/worker_thread.cc @@ -9,9 +9,9 @@ #include "base/threading/thread_local.h" #include "content/common/appcache/appcache_dispatcher.h" #include "content/common/db_message_filter.h" -#include "content/common/indexed_db/indexed_db_message_filter.h" #include "content/common/web_database_observer_impl.h" #include "content/common/worker_messages.h" +#include "content/common_child/indexed_db/indexed_db_message_filter.h" #include "content/public/common/content_switches.h" #include "content/worker/websharedworker_stub.h" #include "content/worker/worker_webkitplatformsupport_impl.h" diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc index f6a9a20..4aa5036 100644 --- a/content/worker/worker_webkitplatformsupport_impl.cc +++ b/content/worker/worker_webkitplatformsupport_impl.cc @@ -8,13 +8,13 @@ #include "base/platform_file.h" #include "base/utf_string_conversions.h" #include "content/common/database_util.h" +#include "content/common/file_utilities_messages.h" #include "content/common/fileapi/webblobregistry_impl.h" #include "content/common/fileapi/webfilesystem_impl.h" -#include "content/common/file_utilities_messages.h" -#include "content/common/indexed_db/proxy_webidbfactory_impl.h" #include "content/common/mime_registry_messages.h" #include "content/common/thread_safe_sender.h" #include "content/common/webmessageportchannel_impl.h" +#include "content/common_child/indexed_db/proxy_webidbfactory_impl.h" #include "content/worker/worker_thread.h" #include "ipc/ipc_sync_message_filter.h" #include "net/base/mime_util.h" |