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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 2435413002: Use a converter for building style value for 'transform' (Closed)
Patch Set: Created 4 years, 2 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/resolver/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index 38d3d9a3f46aa93e31397c0b94a87a4da09b230e..d4f085bcd3c6ff89be5f7899d8d47384ff08ba4d 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -63,7 +63,6 @@
#include "core/css/resolver/FilterOperationResolver.h"
#include "core/css/resolver/FontBuilder.h"
#include "core/css/resolver/StyleBuilder.h"
-#include "core/css/resolver/TransformBuilder.h"
#include "core/frame/LocalFrame.h"
#include "core/frame/Settings.h"
#include "core/style/ComputedStyle.h"
@@ -562,16 +561,6 @@ void StyleBuilderFunctions::applyValueCSSPropertyTextIndent(
state.style()->setTextIndentType(textIndentTypeValue);
}
-void StyleBuilderFunctions::applyValueCSSPropertyTransform(
- StyleResolverState& state,
- const CSSValue& value) {
- // FIXME: We should just make this a converter
- TransformOperations operations;
- TransformBuilder::createTransformOperations(
- value, state.cssToLengthConversionData(), operations);
- state.style()->setTransform(operations);
-}
-
void StyleBuilderFunctions::applyInheritCSSPropertyVerticalAlign(
StyleResolverState& state) {
EVerticalAlign verticalAlign = state.parentStyle()->verticalAlign();

Powered by Google App Engine
This is Rietveld 408576698