| Index: third_party/WebKit/Source/core/css/cssom/ScaleTransformComponent.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/ScaleTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/ScaleTransformComponent.h
|
| index 9cbd456559d100cf1414aa86da30a4318772d752..5b5f04fda6067166b0a6da6202e73a505c0c91a5 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ScaleTransformComponent.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ScaleTransformComponent.h
|
| @@ -10,6 +10,8 @@
|
|
|
| namespace blink {
|
|
|
| +class ExceptionState;
|
| +
|
| class CORE_EXPORT ScaleTransformComponent final : public TransformComponent {
|
| WTF_MAKE_NONCOPYABLE(ScaleTransformComponent);
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -30,7 +32,7 @@ public:
|
|
|
| TransformComponentType type() const override { return m_is2D ? ScaleType : Scale3DType; }
|
|
|
| - MatrixTransformComponent* asMatrix() const override
|
| + MatrixTransformComponent* asMatrix(ExceptionState&) const override
|
| {
|
| return m_is2D ? MatrixTransformComponent::scale(m_x, m_y)
|
| : MatrixTransformComponent::scale3d(m_x, m_y, m_z);
|
|
|