| Index: third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h b/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h
|
| index 9d3de5913738103acb5dd35c2242811ae3751339..99140c56ffd338749108ee20f311c9d64db6089c 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h
|
| @@ -17,6 +17,7 @@ class CORE_EXPORT CSSLengthValue : public CSSStyleValue {
|
| WTF_MAKE_NONCOPYABLE(CSSLengthValue);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| + static CSSLengthValue* fromCSSValue(const CSSValue& value);
|
| static CSSPrimitiveValue::UnitType unitFromName(const String& name);
|
|
|
| CSSLengthValue* add(const CSSLengthValue* other, ExceptionState&);
|
| @@ -35,8 +36,8 @@ 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);
|
|
|
| static bool isSupportedLengthUnit(CSSPrimitiveValue::UnitType unit)
|
| {
|
|
|