Index: third_party/WebKit/Source/core/css/cssom/TransformValue.h |
diff --git a/third_party/WebKit/Source/core/css/cssom/TransformValue.h b/third_party/WebKit/Source/core/css/cssom/TransformValue.h |
index bc5c00a11441b7eb08631d093a1d9530598c1921..fed9ec5034879160b558c2ae74a27a701b77cb4e 100644 |
--- a/third_party/WebKit/Source/core/css/cssom/TransformValue.h |
+++ b/third_party/WebKit/Source/core/css/cssom/TransformValue.h |
@@ -13,6 +13,8 @@ |
namespace blink { |
+class ExceptionState; |
+class MatrixTransformComponent; |
class TransformComponent; |
class CORE_EXPORT TransformValue final : public StyleValue, public ValueIterable<TransformComponent*> { |
@@ -33,6 +35,8 @@ public: |
PassRefPtrWillBeRawPtr<CSSValue> toCSSValue() const override; |
+ MatrixTransformComponent* asMatrix(ExceptionState&) const; |
+ |
StyleValueType type() const override { return TransformValueType; } |
TransformComponent* componentAtIndex(int index) { return m_transformComponents.at(index); } |