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

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

Issue 2247773004: [WIP] CSS Motion Path: offset-anchor and offset-position Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: offsetAnchor Created 4 years, 4 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/StyleBuilderConverter.h
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
index 22589511886cab4002770e12533897a9a352ed72..051dcdecbfd28025b65e943e133af4f3d7cec0de 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
@@ -33,7 +33,7 @@
#include "core/css/resolver/StyleResolverState.h"
#include "core/style/QuotesData.h"
#include "core/style/ShadowList.h"
-#include "core/style/StyleMotionRotation.h"
+#include "core/style/StyleOffsetRotation.h"
#include "core/style/StyleReflection.h"
#include "core/style/StyleScrollSnapData.h"
#include "core/style/TransformOrigin.h"
@@ -87,8 +87,9 @@ public:
static TabSize convertLengthOrTabSpaces(StyleResolverState&, const CSSValue&);
static Length convertLineHeight(StyleResolverState&, const CSSValue&);
static float convertNumberOrPercentage(StyleResolverState&, const CSSValue&);
- static StyleMotionRotation convertMotionRotation(StyleResolverState&, const CSSValue&);
+ static StyleOffsetRotation convertOffsetRotation(StyleResolverState&, const CSSValue&);
static LengthPoint convertPosition(StyleResolverState&, const CSSValue&);
+ static LengthPoint convertPositionOrAuto(StyleResolverState&, const CSSValue&);
static float convertPerspective(StyleResolverState&, const CSSValue&);
static Length convertQuirkyLength(StyleResolverState&, const CSSValue&);
static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, const CSSValue&);
@@ -118,7 +119,7 @@ public:
static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, const CSSValue&);
static RespectImageOrientationEnum convertImageOrientation(StyleResolverState&, const CSSValue&);
static PassRefPtr<StylePath> convertPathOrNone(StyleResolverState&, const CSSValue&);
- static StyleMotionRotation convertMotionRotation(const CSSValue&);
+ static StyleOffsetRotation convertOffsetRotation(const CSSValue&);
template <CSSValueID cssValueFor0, CSSValueID cssValueFor100> static Length convertPositionLength(StyleResolverState&, const CSSValue&);
static Rotation convertRotation(const CSSValue&);
};

Powered by Google App Engine
This is Rietveld 408576698