summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-05 03:15:40 +0000
committerpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-05 03:15:40 +0000
commitfa1abc52afb97d5f5e02957107da501e7255ca3b (patch)
tree4fe7384c40337e812a68cd901ab30ae1033f01ad /content
parent104a17e5fcd709c400317600b50bd187f5e00211 (diff)
downloadchromium_src-fa1abc52afb97d5f5e02957107da501e7255ca3b.zip
chromium_src-fa1abc52afb97d5f5e02957107da501e7255ca3b.tar.gz
chromium_src-fa1abc52afb97d5f5e02957107da501e7255ca3b.tar.bz2
Update some #includes in content/ppapi_plugin for new Platform directory
Review URL: https://chromiumcodereview.appspot.com/11784005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
index e18ece4..d885814 100644
--- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
+++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
@@ -13,18 +13,18 @@
#include "content/common/child_process_messages.h"
#include "content/common/child_thread.h"
#include "ppapi/proxy/plugin_globals.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
#if defined(OS_WIN)
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/win/WebSandboxSupport.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/win/WebSandboxSupport.h"
#elif defined(OS_MACOSX)
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/mac/WebSandboxSupport.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/mac/WebSandboxSupport.h"
#elif defined(OS_POSIX)
#if !defined(OS_ANDROID)
#include "content/common/child_process_sandbox_support_impl_linux.h"
#endif
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/linux/WebFontFamily.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/linux/WebSandboxSupport.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/linux/WebFontFamily.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/linux/WebSandboxSupport.h"
#endif