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

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

Issue 2099513002: [Typed OM] Rename TransformValue -> CSSTransformValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename-transformcomponent
Patch Set: sync to head Created 4 years, 6 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/StyleValueFactory.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
index 30b8d391cd7489f9b582527fd0844f62794f6dcf..e710d8f8a8a0b94a98fc72d57939bc72020111fd 100644
--- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
@@ -7,8 +7,8 @@
#include "core/css/CSSValue.h"
#include "core/css/cssom/CSSSimpleLength.h"
#include "core/css/cssom/CSSStyleValue.h"
+#include "core/css/cssom/CSSTransformValue.h"
#include "core/css/cssom/CSSUnsupportedStyleValue.h"
-#include "core/css/cssom/TransformValue.h"
namespace blink {
@@ -27,7 +27,7 @@ CSSStyleValueVector StyleValueFactory::cssValueToStyleValueVector(CSSPropertyID
CSSStyleValue* styleValue = nullptr;
switch (propertyID) {
case CSSPropertyTransform:
- styleValue = TransformValue::fromCSSValue(value);
+ styleValue = CSSTransformValue::fromCSSValue(value);
if (styleValue)
styleValueVector.append(styleValue);
return styleValueVector;

Powered by Google App Engine
This is Rietveld 408576698