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

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

Issue 2038453002: Typed CSSOM: Rename Matrix to CSSMatrix and MatrixTransformComponent to CSSMatrixTransformComponent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 de7a224eea314059cb16d985262e5c9abe74bf8e..99eef5cc173c5e9585a6d92e9824671891072c03 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
@@ -5,7 +5,7 @@
#ifndef CSSSkew_h
#define CSSSkew_h
-#include "core/css/cssom/MatrixTransformComponent.h"
+#include "core/css/cssom/CSSMatrixTransformComponent.h"
#include "core/css/cssom/TransformComponent.h"
namespace blink {
@@ -24,9 +24,9 @@ public:
TransformComponentType type() const override { return SkewType; }
- MatrixTransformComponent* asMatrix() const override
+ CSSMatrixTransformComponent* asMatrix() const override
{
- return MatrixTransformComponent::skew(m_ax, m_ay);
+ return CSSMatrixTransformComponent::skew(m_ax, m_ay);
}
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/CSSTranslation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698