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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.cpp

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/CSSTransformComponent.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.cpp
index 13c153101f1af31a84c88329614be3c2d0432fb2..d0d1a6f80bee1e2c9e2b9a89bc50afac1ef70dd6 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.cpp
@@ -4,7 +4,7 @@
#include "core/css/cssom/CSSTransformComponent.h"
-#include "core/css/cssom/CSSMatrixTransformComponent.h"
+#include "core/css/cssom/CSSMatrixComponent.h"
#include "core/css/cssom/CSSPerspective.h"
#include "core/css/cssom/CSSRotation.h"
#include "core/css/cssom/CSSScale.h"
@@ -22,7 +22,7 @@ CSSTransformComponent* CSSTransformComponent::fromCSSValue(
switch (functionValue.functionType()) {
case CSSValueMatrix:
case CSSValueMatrix3d:
- return CSSMatrixTransformComponent::fromCSSValue(functionValue);
+ return CSSMatrixComponent::fromCSSValue(functionValue);
case CSSValuePerspective:
return CSSPerspective::fromCSSValue(functionValue);
case CSSValueRotate:

Powered by Google App Engine
This is Rietveld 408576698