| Index: third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h
|
| deleted file mode 100644
|
| index a6fd9bcd1ea4c0aa879baa7c4abcbc86f0fa8176..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h
|
| +++ /dev/null
|
| @@ -1,43 +0,0 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef SkewTransformComponent_h
|
| -#define SkewTransformComponent_h
|
| -
|
| -#include "core/css/cssom/MatrixTransformComponent.h"
|
| -#include "core/css/cssom/TransformComponent.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class CORE_EXPORT SkewTransformComponent final : public TransformComponent {
|
| - WTF_MAKE_NONCOPYABLE(SkewTransformComponent);
|
| - DEFINE_WRAPPERTYPEINFO();
|
| -public:
|
| - static SkewTransformComponent* create(double ax, double ay)
|
| - {
|
| - return new SkewTransformComponent(ax, ay);
|
| - }
|
| -
|
| - double ax() const { return m_ax; }
|
| - double ay() const { return m_ay; }
|
| -
|
| - TransformComponentType type() const override { return SkewType; }
|
| -
|
| - MatrixTransformComponent* asMatrix() const override
|
| - {
|
| - return MatrixTransformComponent::skew(m_ax, m_ay);
|
| - }
|
| -
|
| - CSSFunctionValue* toCSSValue() const override;
|
| -
|
| -private:
|
| - SkewTransformComponent(double ax, double ay) : TransformComponent(), m_ax(ax), m_ay(ay) { }
|
| -
|
| - double m_ax;
|
| - double m_ay;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif
|
|
|