| Index: Source/platform/LengthFunctions.h
|
| diff --git a/Source/platform/LengthFunctions.h b/Source/platform/LengthFunctions.h
|
| index db7e505fa583cd9f29cca7195e21b24bd47ba9c9..c9140aa0fde0a48ade0f41308848c78714e96b6a 100644
|
| --- a/Source/platform/LengthFunctions.h
|
| +++ b/Source/platform/LengthFunctions.h
|
| @@ -28,17 +28,21 @@
|
|
|
| namespace blink {
|
|
|
| +class FloatPoint;
|
| class FloatSize;
|
| class LayoutUnit;
|
| class Length;
|
| class LengthSize;
|
|
|
| +struct LengthPoint;
|
| +
|
| PLATFORM_EXPORT int intValueForLength(const Length&, LayoutUnit maximumValue);
|
| PLATFORM_EXPORT float floatValueForLength(const Length&, float maximumValue);
|
| PLATFORM_EXPORT LayoutUnit minimumValueForLength(const Length&, LayoutUnit maximumValue);
|
| PLATFORM_EXPORT LayoutUnit roundedMinimumValueForLength(const Length&, LayoutUnit maximumValue);
|
| PLATFORM_EXPORT LayoutUnit valueForLength(const Length&, LayoutUnit maximumValue);
|
| PLATFORM_EXPORT FloatSize floatSizeForLengthSize(const LengthSize&, const FloatSize& boxSize);
|
| +PLATFORM_EXPORT FloatPoint floatPointForLengthPoint(const LengthPoint&, const FloatSize& boxSize);
|
|
|
| } // namespace blink
|
|
|
|
|