Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h

Issue 2047923002: [WIP] Add support for CSSValue-> CSSLengthValue and CSSTranslation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@supported-types
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {}

Powered by Google App Engine
This is Rietveld 408576698