diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-06 20:08:03 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-06 20:08:03 +0000 |
commit | 10208eaf1c2702844601449633caeda35edd46bf (patch) | |
tree | 1a4644a1392871bf9291fe004d615abaf2f5e0b8 /content/ppapi_plugin | |
parent | 4ebc34469806cdfc7a9a11cd8e3a7a6b4fcf86df (diff) | |
download | chromium_src-10208eaf1c2702844601449633caeda35edd46bf.zip chromium_src-10208eaf1c2702844601449633caeda35edd46bf.tar.gz chromium_src-10208eaf1c2702844601449633caeda35edd46bf.tar.bz2 |
Move a bunch of child-only code from content/common to content/child
Was just trying to move content/common/resource_dispatcher.{cc,h}, but that ends up needing a lot of other things to move.
TBR=jam@chromium.org
BUG=246357
Review URL: https://codereview.chromium.org/16328003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/DEPS | 1 | ||||
-rw-r--r-- | content/ppapi_plugin/broker_process_dispatcher.cc | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/plugin_process_dispatcher.cc | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_broker_main.cc | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_plugin_main.cc | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.cc | 4 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.h | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc | 4 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h | 2 |
9 files changed, 11 insertions, 10 deletions
diff --git a/content/ppapi_plugin/DEPS b/content/ppapi_plugin/DEPS index a7bbdfc..bde9e92 100644 --- a/content/ppapi_plugin/DEPS +++ b/content/ppapi_plugin/DEPS @@ -1,4 +1,5 @@ include_rules = [ + "+content/child", "+content/public/plugin", "+ppapi/c", "+ppapi/proxy", diff --git a/content/ppapi_plugin/broker_process_dispatcher.cc b/content/ppapi_plugin/broker_process_dispatcher.cc index 8a84a2c..9cd36bb 100644 --- a/content/ppapi_plugin/broker_process_dispatcher.cc +++ b/content/ppapi_plugin/broker_process_dispatcher.cc @@ -8,7 +8,7 @@ #include "base/bind_helpers.h" #include "base/memory/scoped_ptr.h" #include "base/utf_string_conversions.h" -#include "content/common/child_process.h" +#include "content/child/child_process.h" #include "ppapi/c/pp_bool.h" #include "ppapi/c/private/ppp_flash_browser_operations.h" #include "ppapi/proxy/ppapi_messages.h" diff --git a/content/ppapi_plugin/plugin_process_dispatcher.cc b/content/ppapi_plugin/plugin_process_dispatcher.cc index 12fe91b..b0574d4 100644 --- a/content/ppapi_plugin/plugin_process_dispatcher.cc +++ b/content/ppapi_plugin/plugin_process_dispatcher.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/bind_helpers.h" -#include "content/common/child_process.h" +#include "content/child/child_process.h" namespace content { namespace { diff --git a/content/ppapi_plugin/ppapi_broker_main.cc b/content/ppapi_plugin/ppapi_broker_main.cc index e2c6097..0fd01f8 100644 --- a/content/ppapi_plugin/ppapi_broker_main.cc +++ b/content/ppapi_plugin/ppapi_broker_main.cc @@ -5,7 +5,7 @@ #include "base/message_loop.h" #include "base/threading/platform_thread.h" #include "build/build_config.h" -#include "content/common/child_process.h" +#include "content/child/child_process.h" #include "content/ppapi_plugin/ppapi_thread.h" #include "content/public/common/content_switches.h" #include "content/public/common/main_function_params.h" diff --git a/content/ppapi_plugin/ppapi_plugin_main.cc b/content/ppapi_plugin/ppapi_plugin_main.cc index 25ea26e..ca73f49 100644 --- a/content/ppapi_plugin/ppapi_plugin_main.cc +++ b/content/ppapi_plugin/ppapi_plugin_main.cc @@ -8,7 +8,7 @@ #include "base/message_loop.h" #include "base/threading/platform_thread.h" #include "build/build_config.h" -#include "content/common/child_process.h" +#include "content/child/child_process.h" #include "content/common/sandbox_linux.h" #include "content/ppapi_plugin/ppapi_thread.h" #include "content/public/common/content_client.h" diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc index 4f4be32..222ac11 100644 --- a/content/ppapi_plugin/ppapi_thread.cc +++ b/content/ppapi_plugin/ppapi_thread.cc @@ -16,7 +16,7 @@ #include "base/threading/platform_thread.h" #include "base/time.h" #include "base/utf_string_conversions.h" -#include "content/common/child_process.h" +#include "content/child/child_process.h" #include "content/common/child_process_messages.h" #include "content/common/sandbox_util.h" #include "content/ppapi_plugin/broker_process_dispatcher.h" @@ -33,9 +33,9 @@ #include "ppapi/c/dev/ppp_network_state_dev.h" #include "ppapi/c/pp_errors.h" #include "ppapi/c/ppp.h" +#include "ppapi/proxy/interface_list.h" #include "ppapi/proxy/plugin_globals.h" #include "ppapi/proxy/ppapi_messages.h" -#include "ppapi/proxy/interface_list.h" #include "ppapi/shared_impl/api_id.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" #include "ui/base/ui_base_switches.h" diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h index 7faff6b..9fb56c1 100644 --- a/content/ppapi_plugin/ppapi_thread.h +++ b/content/ppapi_plugin/ppapi_thread.h @@ -14,7 +14,7 @@ #include "base/process.h" #include "base/scoped_native_library.h" #include "build/build_config.h" -#include "content/common/child_thread.h" +#include "content/child/child_thread.h" #include "ipc/ipc_listener.h" #include "ppapi/c/pp_module.h" #include "ppapi/c/trusted/ppp_broker.h" diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc index 814ab6d..7106386 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc @@ -6,12 +6,12 @@ #include <map> -#include "base/synchronization/lock.h" #include "base/logging.h" #include "base/string16.h" +#include "base/synchronization/lock.h" #include "build/build_config.h" +#include "content/child/child_thread.h" #include "content/common/child_process_messages.h" -#include "content/common/child_thread.h" #include "ppapi/proxy/plugin_globals.h" #include "third_party/WebKit/public/platform/WebString.h" diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h index 7a1a448..3ed674c 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h @@ -7,7 +7,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" -#include "content/common/webkitplatformsupport_impl.h" +#include "content/child/webkitplatformsupport_impl.h" namespace content { |