summaryrefslogtreecommitdiffstats
path: root/content/plugin
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 12:56:01 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 12:56:01 +0000
commitc7199a6e688ad9249ee269cc0e46af0c742e8452 (patch)
treecfdbd6953f9b5df99e9197b0925c47b789591c5e /content/plugin
parentb07a6e40cbc9189ca7740dfc1c5400e84386bfca (diff)
downloadchromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.zip
chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.gz
chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.bz2
Rename content/common_child to content/child
As prerequiste for linked bug. TBR=palmer@chromium.org R=jam@chromium.org,jamesr@chromium.org BUG=246357 Review URL: https://chromiumcodereview.appspot.com/16325022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin')
-rw-r--r--content/plugin/DEPS2
-rw-r--r--content/plugin/plugin_channel.cc4
-rw-r--r--content/plugin/plugin_channel.h2
-rw-r--r--content/plugin/plugin_thread.cc2
-rw-r--r--content/plugin/webplugin_delegate_stub.cc6
-rw-r--r--content/plugin/webplugin_delegate_stub.h2
-rw-r--r--content/plugin/webplugin_proxy.cc6
7 files changed, 12 insertions, 12 deletions
diff --git a/content/plugin/DEPS b/content/plugin/DEPS
index 90fcc14..71cb2f3 100644
--- a/content/plugin/DEPS
+++ b/content/plugin/DEPS
@@ -1,7 +1,7 @@
include_rules = [
"-chrome",
"+content/public/plugin",
- "+content/common_child",
+ "+content/child",
"+sandbox/win/src",
"+skia/ext",
"+third_party/npapi",
diff --git a/content/plugin/plugin_channel.cc b/content/plugin/plugin_channel.cc
index 8c0321f..cf20c3c 100644
--- a/content/plugin/plugin_channel.cc
+++ b/content/plugin/plugin_channel.cc
@@ -11,13 +11,13 @@
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "build/build_config.h"
+#include "content/child/plugin_messages.h"
#include "content/common/child_process.h"
#include "content/common/plugin_process_messages.h"
-#include "content/common_child/plugin_messages.h"
-#include "content/public/common/content_switches.h"
#include "content/plugin/plugin_thread.h"
#include "content/plugin/webplugin_delegate_stub.h"
#include "content/plugin/webplugin_proxy.h"
+#include "content/public/common/content_switches.h"
#include "webkit/plugins/npapi/plugin_instance.h"
#if defined(OS_POSIX)
diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h
index 70b36b7..7860a17 100644
--- a/content/plugin/plugin_channel.h
+++ b/content/plugin/plugin_channel.h
@@ -10,7 +10,7 @@
#include "base/memory/scoped_handle.h"
#include "base/process.h"
#include "build/build_config.h"
-#include "content/common_child/np_channel_base.h"
+#include "content/child/np_channel_base.h"
#include "content/plugin/webplugin_delegate_stub.h"
namespace base {
diff --git a/content/plugin/plugin_thread.cc b/content/plugin/plugin_thread.cc
index 0be9a91..fdb46b5 100644
--- a/content/plugin/plugin_thread.cc
+++ b/content/plugin/plugin_thread.cc
@@ -20,9 +20,9 @@
#include "base/lazy_instance.h"
#include "base/process_util.h"
#include "base/threading/thread_local.h"
+#include "content/child/npobject_util.h"
#include "content/common/child_process.h"
#include "content/common/plugin_process_messages.h"
-#include "content/common_child/npobject_util.h"
#include "content/public/common/content_switches.h"
#include "content/public/plugin/content_plugin_client.h"
#include "ipc/ipc_channel_handle.h"
diff --git a/content/plugin/webplugin_delegate_stub.cc b/content/plugin/webplugin_delegate_stub.cc
index 023861d..16bec47 100644
--- a/content/plugin/webplugin_delegate_stub.cc
+++ b/content/plugin/webplugin_delegate_stub.cc
@@ -9,18 +9,18 @@
#include "base/bind.h"
#include "base/command_line.h"
#include "base/string_number_conversions.h"
-#include "content/common_child/plugin_messages.h"
+#include "content/child/plugin_messages.h"
#include "content/plugin/plugin_channel.h"
#include "content/plugin/plugin_thread.h"
#include "content/plugin/webplugin_proxy.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_constants.h"
#include "content/public/common/content_switches.h"
-#include "third_party/npapi/bindings/npapi.h"
-#include "third_party/npapi/bindings/npruntime.h"
#include "skia/ext/platform_device.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
+#include "third_party/npapi/bindings/npapi.h"
+#include "third_party/npapi/bindings/npruntime.h"
#include "webkit/common/cursors/webcursor.h"
#include "webkit/plugins/npapi/plugin_instance.h"
#include "webkit/plugins/npapi/webplugin_delegate_impl.h"
diff --git a/content/plugin/webplugin_delegate_stub.h b/content/plugin/webplugin_delegate_stub.h
index b8a2a66..7bdfd8b 100644
--- a/content/plugin/webplugin_delegate_stub.h
+++ b/content/plugin/webplugin_delegate_stub.h
@@ -9,7 +9,7 @@
#include <vector>
#include "base/memory/ref_counted.h"
-#include "content/common_child/npobject_stub.h"
+#include "content/child/npobject_stub.h"
#include "googleurl/src/gurl.h"
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
diff --git a/content/plugin/webplugin_proxy.cc b/content/plugin/webplugin_proxy.cc
index 5817060..3705611 100644
--- a/content/plugin/webplugin_proxy.cc
+++ b/content/plugin/webplugin_proxy.cc
@@ -11,9 +11,9 @@
#include "base/memory/scoped_handle.h"
#include "base/shared_memory.h"
#include "build/build_config.h"
-#include "content/common_child/npobject_proxy.h"
-#include "content/common_child/npobject_util.h"
-#include "content/common_child/plugin_messages.h"
+#include "content/child/npobject_proxy.h"
+#include "content/child/npobject_util.h"
+#include "content/child/plugin_messages.h"
#include "content/plugin/plugin_channel.h"
#include "content/plugin/plugin_thread.h"
#include "content/public/common/content_client.h"