| Index: third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h b/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h
|
| index 85e2d5d903a1e0af30432905cb6c9edea47edd68..31d1d2a5364af24f5dac4e092843e5313a4ebea3 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h
|
| @@ -46,8 +46,8 @@ public:
|
| protected:
|
| virtual CSSLengthValue* addInternal(const CSSLengthValue* other, ExceptionState&);
|
| virtual CSSLengthValue* subtractInternal(const CSSLengthValue* other, ExceptionState&);
|
| - virtual CSSLengthValue* multiplyInternal(double, ExceptionState&);
|
| - virtual CSSLengthValue* divideInternal(double, ExceptionState&);
|
| + virtual CSSLengthValue* multiplyInternal(double);
|
| + virtual CSSLengthValue* divideInternal(double);
|
|
|
| private:
|
| CSSSimpleLength(double value, CSSPrimitiveValue::UnitType unit) : CSSLengthValue(), m_unit(unit), m_value(value) {}
|
|
|