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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSRotation.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/CSSRotation.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
index 25628f056f96999f93f44f79587253e8737f15e2..8c0d4d954a53d0a38a9f3d0cfe1a075264e64e8e 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
@@ -6,7 +6,7 @@
#define CSSRotation_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 {
@@ -42,10 +42,10 @@ class CORE_EXPORT CSSRotation final : public CSSTransformComponent {
return m_is2D ? RotationType : Rotation3DType;
}
- CSSMatrixTransformComponent* asMatrix() const override {
- return m_is2D ? CSSMatrixTransformComponent::rotate(m_angle->degrees())
- : CSSMatrixTransformComponent::rotate3d(m_angle->degrees(),
- m_x, m_y, m_z);
+ CSSMatrixComponent* asMatrix() const override {
+ return m_is2D ? CSSMatrixComponent::rotate(m_angle->degrees())
+ : CSSMatrixComponent::rotate3d(m_angle->degrees(), m_x, m_y,
+ m_z);
}
CSSFunctionValue* toCSSValue() const override;
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSPerspective.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSScale.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698