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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSSkew.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/CSSSkew.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSSkew.h b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
index e7b715f5f5130a489f73db3c6f6af24150b17489..bf890e3b1ee6453107eed20d507a4af279576e82 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
@@ -6,7 +6,7 @@
#define CSSSkew_h
#include "core/css/cssom/CSSAngleValue.h"
-#include "core/css/cssom/CSSMatrixTransformComponent.h"
+#include "core/css/cssom/CSSMatrixComponent.h"
#include "core/css/cssom/CSSTransformComponent.h"
namespace blink {
@@ -29,8 +29,8 @@ class CORE_EXPORT CSSSkew final : public CSSTransformComponent {
TransformComponentType type() const override { return SkewType; }
- CSSMatrixTransformComponent* asMatrix() const override {
- return CSSMatrixTransformComponent::skew(m_ax->degrees(), m_ay->degrees());
+ CSSMatrixComponent* asMatrix() const override {
+ return CSSMatrixComponent::skew(m_ax->degrees(), m_ay->degrees());
}
CSSFunctionValue* toCSSValue() const override;
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSScale.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698