| Index: third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp b/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp
|
| index 47e3f4a7b3705f0087fdf088c7814769dcf7c497..62e0fde87ed3a8ec2726ad9b862b6faf03756545 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.cpp
|
| @@ -42,12 +42,12 @@ CSSLengthValue* CSSSimpleLength::subtractInternal(const CSSLengthValue* other, E
|
| return result->subtract(other, exceptionState);
|
| }
|
|
|
| -CSSLengthValue* CSSSimpleLength::multiplyInternal(double x, ExceptionState& exceptionState)
|
| +CSSLengthValue* CSSSimpleLength::multiplyInternal(double x)
|
| {
|
| return create(m_value * x, m_unit);
|
| }
|
|
|
| -CSSLengthValue* CSSSimpleLength::divideInternal(double x, ExceptionState& exceptionState)
|
| +CSSLengthValue* CSSSimpleLength::divideInternal(double x)
|
| {
|
| return create(m_value / x, m_unit);
|
| }
|
|
|