| Index: third_party/WebKit/Source/platform/LayoutUnit.h | 
| diff --git a/third_party/WebKit/Source/platform/LayoutUnit.h b/third_party/WebKit/Source/platform/LayoutUnit.h | 
| index 95e33a16dc1cd9bab3d9f2c16663103960e89de2..f21d4b6c19d6d5c48bcd7595737374b3f891f51d 100644 | 
| --- a/third_party/WebKit/Source/platform/LayoutUnit.h | 
| +++ b/third_party/WebKit/Source/platform/LayoutUnit.h | 
| @@ -218,12 +218,12 @@ private: | 
|  | 
| ALWAYS_INLINE void setValue(int value) | 
| { | 
| -        m_value = saturatedSet(value, kLayoutUnitFractionalBits); | 
| +        m_value = saturatedSet<kLayoutUnitFractionalBits>(value); | 
| } | 
|  | 
| inline void setValue(unsigned value) | 
| { | 
| -        m_value = saturatedSet(value, kLayoutUnitFractionalBits); | 
| +        m_value = saturatedSet<kLayoutUnitFractionalBits>(value); | 
| } | 
|  | 
| int m_value; | 
|  |