summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/transforms/TransformationMatrix.h')
-rw-r--r--Source/WebCore/platform/graphics/transforms/TransformationMatrix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h b/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
index b164d7927..ca68c57aa 100644
--- a/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
+++ b/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h
@@ -27,8 +27,8 @@
#define TransformationMatrix_h
#include "FloatPoint.h"
+#include "FractionalLayoutRect.h"
#include "IntPoint.h"
-#include "LayoutTypes.h"
#include <string.h> //for memcpy
#include <wtf/FastAllocBase.h>
@@ -167,7 +167,7 @@ public:
FloatQuad projectQuad(const FloatQuad&) const;
// Projects the four corners of the quad and takes a bounding box,
// while sanitizing values created when the w component is negative.
- LayoutRect clampedBoundsOfProjectedQuad(const FloatQuad&) const;
+ FractionalLayoutRect clampedBoundsOfProjectedQuad(const FloatQuad&) const;
double m11() const { return m_matrix[0][0]; }
void setM11(double f) { m_matrix[0][0] = f; }