summaryrefslogtreecommitdiffstats
path: root/webkit/renderer
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 00:22:09 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-30 00:22:09 +0000
commitc1088446ddc0571f98a2d40c1a8cfe86c715ffc1 (patch)
tree089aa4fe1e448cf03fb6aff1f4d58993cbbfbb19 /webkit/renderer
parent99d618856b2fd530f88c2431aaa5588367d360f9 (diff)
downloadchromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.zip
chromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.tar.gz
chromium_src-c1088446ddc0571f98a2d40c1a8cfe86c715ffc1.tar.bz2
Update refernces to Blink's Platform API (webkit)
These headers have moved from Source/Platform/chromium/public to public/platform. This CL updates src/webkit'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/15937016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/renderer')
-rw-r--r--webkit/renderer/compositor_bindings/scrollbar_impl.cc4
-rw-r--r--webkit/renderer/compositor_bindings/scrollbar_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_animation_curve_common.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_animation_impl.cc4
-rw-r--r--webkit/renderer/compositor_bindings/web_animation_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_compositing_reasons.cc2
-rw-r--r--webkit/renderer/compositor_bindings/web_compositor_support_impl.h6
-rw-r--r--webkit/renderer/compositor_bindings/web_content_layer_impl.cc10
-rw-r--r--webkit/renderer/compositor_bindings/web_content_layer_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_external_texture_layer_impl.cc8
-rw-r--r--webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_image_layer_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_layer_impl.cc10
-rw-r--r--webkit/renderer/compositor_bindings/web_layer_impl.h20
-rw-r--r--webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.cc4
-rw-r--r--webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc4
-rw-r--r--webkit/renderer/compositor_bindings/web_rendering_stats_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc2
-rw-r--r--webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h4
-rw-r--r--webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.cc4
-rw-r--r--webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h2
-rw-r--r--webkit/renderer/compositor_bindings/web_transform_operations_impl.h2
-rw-r--r--webkit/renderer/fileapi/webfilewriter_base.cc2
-rw-r--r--webkit/renderer/fileapi/webfilewriter_base_unittest.cc2
26 files changed, 54 insertions, 54 deletions
diff --git a/webkit/renderer/compositor_bindings/scrollbar_impl.cc b/webkit/renderer/compositor_bindings/scrollbar_impl.cc
index e8d2764..4f1c4bf 100644
--- a/webkit/renderer/compositor_bindings/scrollbar_impl.cc
+++ b/webkit/renderer/compositor_bindings/scrollbar_impl.cc
@@ -5,8 +5,8 @@
#include "webkit/renderer/compositor_bindings/scrollbar_impl.h"
#include "base/logging.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbar.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbarThemeGeometry.h"
+#include "third_party/WebKit/public/platform/WebScrollbar.h"
+#include "third_party/WebKit/public/platform/WebScrollbarThemeGeometry.h"
using WebKit::WebScrollbar;
diff --git a/webkit/renderer/compositor_bindings/scrollbar_impl.h b/webkit/renderer/compositor_bindings/scrollbar_impl.h
index 8f35a08..0b6671d 100644
--- a/webkit/renderer/compositor_bindings/scrollbar_impl.h
+++ b/webkit/renderer/compositor_bindings/scrollbar_impl.h
@@ -8,7 +8,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "cc/input/scrollbar.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbarThemePainter.h"
+#include "third_party/WebKit/public/platform/WebScrollbarThemePainter.h"
namespace WebKit {
class WebScrollbar;
diff --git a/webkit/renderer/compositor_bindings/web_animation_curve_common.h b/webkit/renderer/compositor_bindings/web_animation_curve_common.h
index a8c39d0..a185695 100644
--- a/webkit/renderer/compositor_bindings/web_animation_curve_common.h
+++ b/webkit/renderer/compositor_bindings/web_animation_curve_common.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_CURVE_COMMON_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebAnimationCurve.h"
+#include "third_party/WebKit/public/platform/WebAnimationCurve.h"
namespace cc { class TimingFunction; }
diff --git a/webkit/renderer/compositor_bindings/web_animation_impl.cc b/webkit/renderer/compositor_bindings/web_animation_impl.cc
index 59d8f8b..1c15bc3 100644
--- a/webkit/renderer/compositor_bindings/web_animation_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_animation_impl.cc
@@ -7,8 +7,8 @@
#include "cc/animation/animation.h"
#include "cc/animation/animation_curve.h"
#include "cc/animation/animation_id_provider.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebAnimationCurve.h"
+#include "third_party/WebKit/public/platform/WebAnimation.h"
+#include "third_party/WebKit/public/platform/WebAnimationCurve.h"
#include "webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h"
#include "webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h"
diff --git a/webkit/renderer/compositor_bindings/web_animation_impl.h b/webkit/renderer/compositor_bindings/web_animation_impl.h
index b343833..faedf90 100644
--- a/webkit/renderer/compositor_bindings/web_animation_impl.h
+++ b/webkit/renderer/compositor_bindings/web_animation_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h"
+#include "third_party/WebKit/public/platform/WebAnimation.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace cc { class Animation; }
diff --git a/webkit/renderer/compositor_bindings/web_compositing_reasons.cc b/webkit/renderer/compositor_bindings/web_compositing_reasons.cc
index 0e04a24..1364f6e 100644
--- a/webkit/renderer/compositor_bindings/web_compositing_reasons.cc
+++ b/webkit/renderer/compositor_bindings/web_compositing_reasons.cc
@@ -4,7 +4,7 @@
#include "base/basictypes.h"
#include "cc/layers/compositing_reasons.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositingReasons.h"
+#include "third_party/WebKit/public/platform/WebCompositingReasons.h"
#define COMPILE_ASSERT_MATCHING_ENUMS(cc_name, webkit_name) \
COMPILE_ASSERT( \
diff --git a/webkit/renderer/compositor_bindings/web_compositor_support_impl.h b/webkit/renderer/compositor_bindings/web_compositor_support_impl.h
index fb94711..8048c94 100644
--- a/webkit/renderer/compositor_bindings/web_compositor_support_impl.h
+++ b/webkit/renderer/compositor_bindings/web_compositor_support_impl.h
@@ -7,9 +7,9 @@
#include "base/memory/ref_counted.h"
#include "base/message_loop_proxy.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSupport.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
+#include "third_party/WebKit/public/platform/WebCompositorSupport.h"
+#include "third_party/WebKit/public/platform/WebLayer.h"
+#include "third_party/WebKit/public/platform/WebTransformOperations.h"
namespace WebKit {
class WebGraphicsContext3D;
diff --git a/webkit/renderer/compositor_bindings/web_content_layer_impl.cc b/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
index 2b2a518..cc02f89 100644
--- a/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
@@ -8,11 +8,11 @@
#include "cc/base/switches.h"
#include "cc/layers/content_layer.h"
#include "cc/layers/picture_layer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebContentLayerClient.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
+#include "third_party/WebKit/public/platform/WebContentLayerClient.h"
+#include "third_party/WebKit/public/platform/WebFloatPoint.h"
+#include "third_party/WebKit/public/platform/WebFloatRect.h"
+#include "third_party/WebKit/public/platform/WebRect.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
using cc::ContentLayer;
diff --git a/webkit/renderer/compositor_bindings/web_content_layer_impl.h b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
index bee6e8c..a8b7dbc 100644
--- a/webkit/renderer/compositor_bindings/web_content_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
@@ -7,7 +7,7 @@
#include "base/memory/scoped_ptr.h"
#include "cc/layers/content_layer_client.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebContentLayer.h"
+#include "third_party/WebKit/public/platform/WebContentLayer.h"
#include "webkit/renderer/compositor_bindings/web_layer_impl.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
diff --git a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.cc b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.cc
index 8e01f29..e198d22 100644
--- a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.cc
@@ -6,10 +6,10 @@
#include "cc/layers/texture_layer.h"
#include "cc/resources/resource_update_queue.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebExternalTextureLayerClient.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebExternalTextureMailbox.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
+#include "third_party/WebKit/public/platform/WebExternalTextureLayerClient.h"
+#include "third_party/WebKit/public/platform/WebExternalTextureMailbox.h"
+#include "third_party/WebKit/public/platform/WebFloatRect.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
#include "webkit/renderer/compositor_bindings/web_layer_impl.h"
using cc::TextureLayer;
diff --git a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
index b4bc02a..dfe75a6 100644
--- a/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h
@@ -9,7 +9,7 @@
#include "base/memory/scoped_ptr.h"
#include "cc/layers/texture_layer_client.h"
#include "cc/resources/texture_mailbox.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebExternalTextureLayer.h"
+#include "third_party/WebKit/public/platform/WebExternalTextureLayer.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace WebKit {
diff --git a/webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h b/webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h
index 2f4d656..be2df50 100644
--- a/webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h
+++ b/webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_FLOAT_ANIMATION_CURVE_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatAnimationCurve.h"
+#include "third_party/WebKit/public/platform/WebFloatAnimationCurve.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace cc {
diff --git a/webkit/renderer/compositor_bindings/web_image_layer_impl.h b/webkit/renderer/compositor_bindings/web_image_layer_impl.h
index c74d45f..fbce0e1 100644
--- a/webkit/renderer/compositor_bindings/web_image_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_image_layer_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_IMAGE_LAYER_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebImageLayer.h"
+#include "third_party/WebKit/public/platform/WebImageLayer.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
diff --git a/webkit/renderer/compositor_bindings/web_layer_impl.cc b/webkit/renderer/compositor_bindings/web_layer_impl.cc
index 6645538..bd251b5 100644
--- a/webkit/renderer/compositor_bindings/web_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_layer_impl.cc
@@ -9,11 +9,11 @@
#include "cc/base/region.h"
#include "cc/layers/layer.h"
#include "cc/layers/layer_position_constraint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositingReasons.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebLayerPositionConstraint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
+#include "third_party/WebKit/public/platform/WebCompositingReasons.h"
+#include "third_party/WebKit/public/platform/WebFloatPoint.h"
+#include "third_party/WebKit/public/platform/WebFloatRect.h"
+#include "third_party/WebKit/public/platform/WebLayerPositionConstraint.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
#include "webkit/renderer/compositor_bindings/web_animation_impl.h"
diff --git a/webkit/renderer/compositor_bindings/web_layer_impl.h b/webkit/renderer/compositor_bindings/web_layer_impl.h
index 01e7e58..c6c6824 100644
--- a/webkit/renderer/compositor_bindings/web_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_layer_impl.h
@@ -6,16 +6,16 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_
#include "base/memory/ref_counted.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositingReasons.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h"
+#include "third_party/WebKit/public/platform/WebAnimation.h"
+#include "third_party/WebKit/public/platform/WebColor.h"
+#include "third_party/WebKit/public/platform/WebCompositingReasons.h"
+#include "third_party/WebKit/public/platform/WebFloatPoint.h"
+#include "third_party/WebKit/public/platform/WebLayer.h"
+#include "third_party/WebKit/public/platform/WebPoint.h"
+#include "third_party/WebKit/public/platform/WebRect.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
+#include "third_party/WebKit/public/platform/WebString.h"
+#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
diff --git a/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.cc b/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.cc
index 6eecd58..793390e 100644
--- a/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.cc
+++ b/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.cc
@@ -5,8 +5,8 @@
#include "webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.h"
#include "cc/layers/layer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
+#include "third_party/WebKit/public/platform/WebFloatPoint.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
using cc::Layer;
diff --git a/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc b/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc
index 3b8798e..f02afd2 100644
--- a/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc
+++ b/webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc
@@ -7,8 +7,8 @@
#include "cc/test/geometry_test_utils.h"
#include "cc/trees/layer_tree_host_common.h"
#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
+#include "third_party/WebKit/public/platform/WebFloatPoint.h"
+#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
#include "ui/gfx/point3_f.h"
#include "webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.h"
diff --git a/webkit/renderer/compositor_bindings/web_rendering_stats_impl.h b/webkit/renderer/compositor_bindings/web_rendering_stats_impl.h
index fef23ac..395bd5d 100644
--- a/webkit/renderer/compositor_bindings/web_rendering_stats_impl.h
+++ b/webkit/renderer/compositor_bindings/web_rendering_stats_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_RENDERING_STATS_IMPL_H_
#include "cc/debug/rendering_stats.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebRenderingStats.h"
+#include "third_party/WebKit/public/platform/WebRenderingStats.h"
namespace WebKit {
diff --git a/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc b/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc
index d39b1fe..a808021 100644
--- a/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.cc
@@ -5,7 +5,7 @@
#include "webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h"
#include "cc/layers/scrollbar_layer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbar.h"
+#include "third_party/WebKit/public/platform/WebScrollbar.h"
#include "webkit/renderer/compositor_bindings/scrollbar_impl.h"
#include "webkit/renderer/compositor_bindings/web_layer_impl.h"
diff --git a/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h b/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h
index 7eb0ce2..de7bbfd 100644
--- a/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_scrollbar_layer_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_SCROLLBAR_LAYER_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbarLayer.h"
+#include "third_party/WebKit/public/platform/WebScrollbarLayer.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace WebKit {
diff --git a/webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h b/webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h
index 15a7e2a..3767ee6 100644
--- a/webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_solid_color_layer_impl.h
@@ -6,8 +6,8 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_SOLID_COLOR_LAYER_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebSolidColorLayer.h"
+#include "third_party/WebKit/public/platform/WebColor.h"
+#include "third_party/WebKit/public/platform/WebSolidColorLayer.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace webkit {
diff --git a/webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.cc b/webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.cc
index a15c35d..e9d1ba1 100644
--- a/webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.cc
+++ b/webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.cc
@@ -4,8 +4,8 @@
#include "webkit/renderer/compositor_bindings/web_to_ccscrollbar_theme_painter_adapter.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbarThemePainter.h"
+#include "third_party/WebKit/public/platform/WebRect.h"
+#include "third_party/WebKit/public/platform/WebScrollbarThemePainter.h"
using WebKit::WebScrollbarThemePainter;
diff --git a/webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h b/webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h
index c32f175..649b10d 100644
--- a/webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h
+++ b/webkit/renderer/compositor_bindings/web_transform_animation_curve_impl.h
@@ -6,7 +6,7 @@
#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_TRANSFORM_ANIMATION_CURVE_IMPL_H_
#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformAnimationCurve.h"
+#include "third_party/WebKit/public/platform/WebTransformAnimationCurve.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace cc {
diff --git a/webkit/renderer/compositor_bindings/web_transform_operations_impl.h b/webkit/renderer/compositor_bindings/web_transform_operations_impl.h
index 0307dc5..d59372d 100644
--- a/webkit/renderer/compositor_bindings/web_transform_operations_impl.h
+++ b/webkit/renderer/compositor_bindings/web_transform_operations_impl.h
@@ -7,7 +7,7 @@
#include "base/memory/scoped_ptr.h"
#include "cc/animation/transform_operations.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
+#include "third_party/WebKit/public/platform/WebTransformOperations.h"
#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
namespace webkit {
diff --git a/webkit/renderer/fileapi/webfilewriter_base.cc b/webkit/renderer/fileapi/webfilewriter_base.cc
index 87ea863..2ae8cdb 100644
--- a/webkit/renderer/fileapi/webfilewriter_base.cc
+++ b/webkit/renderer/fileapi/webfilewriter_base.cc
@@ -5,7 +5,7 @@
#include "webkit/renderer/fileapi/webfilewriter_base.h"
#include "base/logging.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
+#include "third_party/WebKit/public/platform/WebURL.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileWriterClient.h"
#include "webkit/common/fileapi/file_system_util.h"
diff --git a/webkit/renderer/fileapi/webfilewriter_base_unittest.cc b/webkit/renderer/fileapi/webfilewriter_base_unittest.cc
index 3b6e20c..cdacfa4 100644
--- a/webkit/renderer/fileapi/webfilewriter_base_unittest.cc
+++ b/webkit/renderer/fileapi/webfilewriter_base_unittest.cc
@@ -10,7 +10,7 @@
#include "base/utf_string_conversions.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
+#include "third_party/WebKit/public/platform/WebURL.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileWriterClient.h"