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

Unified Diff: Source/core/css/resolver/StyleBuilderConverter.h

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master and explicit applyTransform parameters Created 5 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: Source/core/css/resolver/StyleBuilderConverter.h
diff --git a/Source/core/css/resolver/StyleBuilderConverter.h b/Source/core/css/resolver/StyleBuilderConverter.h
index e0ca698ae08d9d2ac8812e5468df5c651e3d4519..8de0539b12cb9209eabeb18a2cc0851a14e146c7 100644
--- a/Source/core/css/resolver/StyleBuilderConverter.h
+++ b/Source/core/css/resolver/StyleBuilderConverter.h
@@ -43,6 +43,9 @@
namespace blink {
// Note that we assume the parser only allows valid CSSValue types.
+class RotateTransformOperation;
Timothy Loh 2015/06/19 01:16:45 Probably better above the comment otherwise it rea
soonm 2015/06/19 04:39:52 Moved comment down
+class TranslateTransformOperation;
+class ScaleTransformOperation;
class StyleBuilderConverter {
public:
@@ -98,6 +101,9 @@ public:
static ScrollSnapPoints convertSnapPoints(StyleResolverState&, CSSValue*);
static Vector<LengthPoint> convertSnapCoordinates(StyleResolverState&, CSSValue*);
static LengthPoint convertSnapDestination(StyleResolverState&, CSSValue*);
+ static PassRefPtr<TranslateTransformOperation> convertTranslate(StyleResolverState&, CSSValue*);
+ static PassRefPtr<RotateTransformOperation> convertRotate(StyleResolverState&, CSSValue*);
+ static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, CSSValue*);
};
template <typename T>

Powered by Google App Engine
This is Rietveld 408576698