Index: Source/core/css/CSSLengthFunctions.h |
diff --git a/Source/core/css/CSSLengthFunctions.h b/Source/core/css/CSSLengthFunctions.h |
index 4cb39884f9c48c3408f0ee05fbfd74403f9212bb..63a908b44102988e45935ac14eb15d78c389f3ec 100644 |
--- a/Source/core/css/CSSLengthFunctions.h |
+++ b/Source/core/css/CSSLengthFunctions.h |
@@ -32,10 +32,11 @@ class Length; |
class RenderView; |
// FIXME: Move these to platform/LengthFunctions.h |
-int minimumIntValueForLength(const Length&, LayoutUnit maximumValue, bool roundPercentages = false); |
-int intValueForLength(const Length&, LayoutUnit maximumValue, bool roundPercentages = false); |
-LayoutUnit minimumValueForLength(const Length&, LayoutUnit maximumValue, bool roundPercentages = false); |
-LayoutUnit valueForLength(const Length&, LayoutUnit maximumValue, bool roundPercentages = false); |
+int minimumIntValueForLength(const Length&, LayoutUnit maximumValue); |
+int intValueForLength(const Length&, LayoutUnit maximumValue); |
+LayoutUnit minimumValueForLength(const Length&, LayoutUnit maximumValue); |
+LayoutUnit roundedMinimumValueForLength(const Length&, LayoutUnit maximumValue); |
+LayoutUnit valueForLength(const Length&, LayoutUnit maximumValue); |
} // namespace WebCore |