diff options
Diffstat (limited to 'Source/WebCore/css/TransformFunctions.h')
-rw-r--r-- | Source/WebCore/css/TransformFunctions.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/WebCore/css/TransformFunctions.h b/Source/WebCore/css/TransformFunctions.h index 975e0b656..5a320c312 100644 --- a/Source/WebCore/css/TransformFunctions.h +++ b/Source/WebCore/css/TransformFunctions.h @@ -27,18 +27,20 @@ * SUCH DAMAGE. */ -#ifndef TransformFunctions_h -#define TransformFunctions_h +#pragma once #include "TransformOperations.h" namespace WebCore { +class CSSPrimitiveValue; +class CSSToLengthConversionData; class CSSValue; class RenderStyle; -class WebKitCSSTransformValue; -bool transformsForValue(const RenderStyle*, const RenderStyle* rootStyle, CSSValue*, TransformOperations&); +struct Length; -} -#endif +bool transformsForValue(const CSSValue&, const CSSToLengthConversionData&, TransformOperations&); +Length convertToFloatLength(const CSSPrimitiveValue*, const CSSToLengthConversionData&); + +} // namespace WebCore |