| Index: third_party/WebKit/Source/core/css/cssom/CSSPerspective.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSPerspective.h b/third_party/WebKit/Source/core/css/cssom/CSSPerspective.h
|
| index eb49ef59c82cd241d9aef0a2d0e2c5a1f9da0f5b..ab30ff0e3fad86ba35127607683b7d57f9b41c1d 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSPerspective.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSPerspective.h
|
| @@ -11,6 +11,7 @@
|
|
|
| namespace blink {
|
|
|
| +class DOMMatrix;
|
| class ExceptionState;
|
|
|
| class CORE_EXPORT CSSPerspective : public CSSTransformComponent {
|
| @@ -28,8 +29,8 @@ class CORE_EXPORT CSSPerspective : public CSSTransformComponent {
|
|
|
| TransformComponentType GetType() const override { return kPerspectiveType; }
|
|
|
| - // TODO: Implement asMatrix for CSSPerspective.
|
| - CSSMatrixComponent* asMatrix() const override { return nullptr; }
|
| + // TODO: Implement AsMatrix for CSSPerspective.
|
| + DOMMatrix* AsMatrix() const override { return nullptr; }
|
|
|
| CSSFunctionValue* ToCSSValue() const override;
|
|
|
|
|