Index: cc/nine_patch_layer_impl_unittest.cc |
diff --git a/cc/nine_patch_layer_impl_unittest.cc b/cc/nine_patch_layer_impl_unittest.cc |
index e63f25cada45d2b853abd5a4a163842943ccdd40..a18f3bb01c4f87db5e02ba46562deed9b7218d2c 100644 |
--- a/cc/nine_patch_layer_impl_unittest.cc |
+++ b/cc/nine_patch_layer_impl_unittest.cc |
@@ -14,7 +14,7 @@ |
#include "ui/gfx/safe_integer_conversions.h" |
#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
-#include <public/WebTransformationMatrix.h> |
+#include "ui/gfx/transform.h" |
namespace cc { |
namespace { |
@@ -46,8 +46,8 @@ TEST(NinePatchLayerImplTest, verifyDrawQuads) |
// This scale should not affect the generated quad geometry, but only |
// the shared draw transform. |
- WebKit::WebTransformationMatrix transform; |
- transform.scale(10); |
+ gfx::Transform transform; |
+ transform.PreconcatScale(10, 10); |
layer->setDrawTransform(transform); |
AppendQuadsData data; |