Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSMatrixTransformComponent.h

Issue 2711473005: Rename CSSMatrixTransformComponent -> CSSMatrixComponent (Closed)
Patch Set: Rename cssMatrixTransformComponent.html => cssMatrixComponent.html Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/cssom/CSSMatrixTransformComponent.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSMatrixTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/CSSMatrixTransformComponent.h
deleted file mode 100644
index 24ed6dd6bc44cea4950a874e8afba9b027522a3b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/css/cssom/CSSMatrixTransformComponent.h
+++ /dev/null
@@ -1,171 +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 CSSMatrixTransformComponent_h
-#define CSSMatrixTransformComponent_h
-
-#include "core/css/cssom/CSSTransformComponent.h"
-#include "platform/transforms/TransformationMatrix.h"
-#include <memory>
-
-namespace blink {
-
-class CORE_EXPORT CSSMatrixTransformComponent final
- : public CSSTransformComponent {
- WTF_MAKE_NONCOPYABLE(CSSMatrixTransformComponent);
- DEFINE_WRAPPERTYPEINFO();
-
- public:
- static CSSMatrixTransformComponent* create(double a,
- double b,
- double c,
- double d,
- double e,
- double f) {
- return new CSSMatrixTransformComponent(a, b, c, d, e, f);
- }
-
- static CSSMatrixTransformComponent* create(double m11,
- double m12,
- double m13,
- double m14,
- double m21,
- double m22,
- double m23,
- double m24,
- double m31,
- double m32,
- double m33,
- double m34,
- double m41,
- double m42,
- double m43,
- double m44) {
- return new CSSMatrixTransformComponent(m11, m12, m13, m14, m21, m22, m23,
- m24, m31, m32, m33, m34, m41, m42,
- m43, m44);
- }
-
- static CSSMatrixTransformComponent* fromCSSValue(
- const CSSFunctionValue& value) {
- return nullptr;
- }
-
- // 2D matrix attributes
- double a() const { return m_matrix->a(); }
- double b() const { return m_matrix->b(); }
- double c() const { return m_matrix->c(); }
- double d() const { return m_matrix->d(); }
- double e() const { return m_matrix->e(); }
- double f() const { return m_matrix->f(); }
-
- // 3D matrix attributes
- double m11() const { return m_matrix->m11(); }
- double m12() const { return m_matrix->m12(); }
- double m13() const { return m_matrix->m13(); }
- double m14() const { return m_matrix->m14(); }
- double m21() const { return m_matrix->m21(); }
- double m22() const { return m_matrix->m22(); }
- double m23() const { return m_matrix->m23(); }
- double m24() const { return m_matrix->m24(); }
- double m31() const { return m_matrix->m31(); }
- double m32() const { return m_matrix->m32(); }
- double m33() const { return m_matrix->m33(); }
- double m34() const { return m_matrix->m34(); }
- double m41() const { return m_matrix->m41(); }
- double m42() const { return m_matrix->m42(); }
- double m43() const { return m_matrix->m43(); }
- double m44() const { return m_matrix->m44(); }
-
- TransformComponentType type() const override {
- return m_is2D ? MatrixType : Matrix3DType;
- }
-
- // Bindings require a non const return value.
- CSSMatrixTransformComponent* asMatrix() const override {
- return const_cast<CSSMatrixTransformComponent*>(this);
- }
-
- CSSFunctionValue* toCSSValue() const override;
-
- static CSSMatrixTransformComponent* perspective(double length);
-
- static CSSMatrixTransformComponent* rotate(double angle);
- static CSSMatrixTransformComponent* rotate3d(double angle,
- double x,
- double y,
- double z);
-
- static CSSMatrixTransformComponent* scale(double x, double y);
- static CSSMatrixTransformComponent* scale3d(double x, double y, double z);
-
- static CSSMatrixTransformComponent* skew(double x, double y);
-
- static CSSMatrixTransformComponent* translate(double x, double y);
- static CSSMatrixTransformComponent* translate3d(double x, double y, double z);
-
- private:
- CSSMatrixTransformComponent(double a,
- double b,
- double c,
- double d,
- double e,
- double f)
- : CSSTransformComponent(),
- m_matrix(TransformationMatrix::create(a, b, c, d, e, f)),
- m_is2D(true) {}
-
- CSSMatrixTransformComponent(double m11,
- double m12,
- double m13,
- double m14,
- double m21,
- double m22,
- double m23,
- double m24,
- double m31,
- double m32,
- double m33,
- double m34,
- double m41,
- double m42,
- double m43,
- double m44)
- : CSSTransformComponent(),
- m_matrix(TransformationMatrix::create(m11,
- m12,
- m13,
- m14,
- m21,
- m22,
- m23,
- m24,
- m31,
- m32,
- m33,
- m34,
- m41,
- m42,
- m43,
- m44)),
- m_is2D(false) {}
-
- CSSMatrixTransformComponent(
- std::unique_ptr<const TransformationMatrix> matrix,
- TransformComponentType fromType)
- : CSSTransformComponent(),
- m_matrix(std::move(matrix)),
- m_is2D(is2DComponentType(fromType)) {}
-
- // TransformationMatrix needs to be 16-byte aligned. PartitionAlloc
- // supports 16-byte alignment but Oilpan doesn't. So we use an std::unique_ptr
- // to allocate TransformationMatrix on PartitionAlloc.
- // TODO(oilpan): Oilpan should support 16-byte aligned allocations.
- std::unique_ptr<const TransformationMatrix> m_matrix;
- bool m_is2D;
-};
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698