summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h b/chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h
index 11503ae1808..a9a70c44de6 100644
--- a/chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h
+++ b/chromium/third_party/blink/renderer/platform/transforms/transformation_matrix_test_helpers.h
@@ -5,8 +5,8 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_TRANSFORMS_TRANSFORMATION_MATRIX_TEST_HELPERS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TRANSFORMS_TRANSFORMATION_MATRIX_TEST_HELPERS_H_
-#include "cc/test/geometry_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "ui/gfx/geometry/test/transform_test_util.h"
#include "ui/gfx/transform.h"
namespace blink {
@@ -18,7 +18,7 @@ constexpr double kFloatingPointErrorTolerance = 1e-6;
#define EXPECT_TRANSFORMATION_MATRIX(expected, actual) \
do { \
SCOPED_TRACE(""); \
- cc::ExpectTransformationMatrixNear( \
+ gfx::ExpectTransformationMatrixNear( \
TransformationMatrix::ToTransform(expected), \
TransformationMatrix::ToTransform(actual), \
kFloatingPointErrorTolerance); \