| Index: third_party/WebKit/Source/core/css/cssom/CSSSkew.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSSkew.h b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
|
| index e7b715f5f5130a489f73db3c6f6af24150b17489..bf890e3b1ee6453107eed20d507a4af279576e82 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
|
| @@ -6,7 +6,7 @@
|
| #define CSSSkew_h
|
|
|
| #include "core/css/cssom/CSSAngleValue.h"
|
| -#include "core/css/cssom/CSSMatrixTransformComponent.h"
|
| +#include "core/css/cssom/CSSMatrixComponent.h"
|
| #include "core/css/cssom/CSSTransformComponent.h"
|
|
|
| namespace blink {
|
| @@ -29,8 +29,8 @@ class CORE_EXPORT CSSSkew final : public CSSTransformComponent {
|
|
|
| TransformComponentType type() const override { return SkewType; }
|
|
|
| - CSSMatrixTransformComponent* asMatrix() const override {
|
| - return CSSMatrixTransformComponent::skew(m_ax->degrees(), m_ay->degrees());
|
| + CSSMatrixComponent* asMatrix() const override {
|
| + return CSSMatrixComponent::skew(m_ax->degrees(), m_ay->degrees());
|
| }
|
|
|
| CSSFunctionValue* toCSSValue() const override;
|
|
|