summaryrefslogtreecommitdiffstats
path: root/content/ppapi_plugin
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 03:46:08 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 03:46:08 +0000
commit5c30b5e024416c5a710501b26a59632296460423 (patch)
tree885fedadf0dccea79ffda059121a23b15fd2e505 /content/ppapi_plugin
parent4a8cf3e2dcd1c95a3ec7ba34f7a0b653c154a1ce (diff)
downloadchromium_src-5c30b5e024416c5a710501b26a59632296460423.zip
chromium_src-5c30b5e024416c5a710501b26a59632296460423.tar.gz
chromium_src-5c30b5e024416c5a710501b26a59632296460423.tar.bz2
Update refernces to Blink's Platform API (content)
These headers have moved from Source/Platform/chromium/public to public/platform. This CL updates content's references to the old location to point to the new location. After this CL lands, I'll remove the forwarding headers that are letting these references still work. TBR=jamesr@chromium.org BUG=239545 Review URL: https://chromiumcodereview.appspot.com/15822010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203047 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-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 d885814..814ab6d 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/Platform/chromium/public/WebString.h"
+#include "third_party/WebKit/public/platform/WebString.h"
#if defined(OS_WIN)
-#include "third_party/WebKit/Source/Platform/chromium/public/win/WebSandboxSupport.h"
+#include "third_party/WebKit/public/platform/win/WebSandboxSupport.h"
#elif defined(OS_MACOSX)
-#include "third_party/WebKit/Source/Platform/chromium/public/mac/WebSandboxSupport.h"
+#include "third_party/WebKit/public/platform/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/Platform/chromium/public/linux/WebFontFamily.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/linux/WebSandboxSupport.h"
+#include "third_party/WebKit/public/platform/linux/WebFontFamily.h"
+#include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h"
#endif