| Index: third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| index 5bbe48c46871ec7025a58eec288dd88be97ea7d5..8e2c4ee983e50d6ddff935c94ccf16e0c2a20b22 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
|
| @@ -418,16 +418,6 @@ enum class PageSizeType {
|
| kResolved // Size is fully resolved.
|
| };
|
|
|
| -// In order to conserve memory, the border width uses fixed point,
|
| -// which can be bitpacked. This fixed point implementation is
|
| -// essentially the same as in LayoutUnit. Six bits are used for the
|
| -// fraction, which leaves 20 bits for the integer part, making 1048575
|
| -// the largest number.
|
| -
|
| -static const int kBorderWidthFractionalBits = 6;
|
| -static const int kBorderWidthDenominator = 1 << kBorderWidthFractionalBits;
|
| -static const int kMaxForBorderWidth = ((1 << 26) - 1) / kBorderWidthDenominator;
|
| -
|
| } // namespace blink
|
|
|
| #endif // ComputedStyleConstants_h
|
|
|