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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSScale.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/CSSScale.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSScale.h b/third_party/WebKit/Source/core/css/cssom/CSSScale.h
index cceb6832eaf9989be39faf49ebb7d4d879330f8d..552f3e62a84e00cb1a7d16230b731ccffbe9c4f4 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSScale.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSScale.h
@@ -5,7 +5,7 @@
#ifndef CSSScale_h
#define CSSScale_h
-#include "core/css/cssom/CSSMatrixTransformComponent.h"
+#include "core/css/cssom/CSSMatrixComponent.h"
#include "core/css/cssom/CSSTransformComponent.h"
namespace blink {
@@ -31,9 +31,9 @@ class CORE_EXPORT CSSScale final : public CSSTransformComponent {
return m_is2D ? ScaleType : Scale3DType;
}
- CSSMatrixTransformComponent* asMatrix() const override {
- return m_is2D ? CSSMatrixTransformComponent::scale(m_x, m_y)
- : CSSMatrixTransformComponent::scale3d(m_x, m_y, m_z);
+ CSSMatrixComponent* asMatrix() const override {
+ return m_is2D ? CSSMatrixComponent::scale(m_x, m_y)
+ : CSSMatrixComponent::scale3d(m_x, m_y, m_z);
}
CSSFunctionValue* toCSSValue() const override;
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSRotation.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSSkew.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698