Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/cssom/LengthValue.h |
| diff --git a/third_party/WebKit/Source/core/css/cssom/LengthValue.h b/third_party/WebKit/Source/core/css/cssom/LengthValue.h |
| index 9232d6ac1d7e5445f955df5a4d829391b35fbe0d..6fff666c5c14968a69013b6559aa87003eb50446 100644 |
| --- a/third_party/WebKit/Source/core/css/cssom/LengthValue.h |
| +++ b/third_party/WebKit/Source/core/css/cssom/LengthValue.h |
| @@ -30,6 +30,8 @@ public: |
| static LengthValue* fromDictionary(const CalcDictionary&, ExceptionState&); |
| protected: |
| + static const int kNumSupportedUnits = 15; |
|
Timothy Loh
2016/03/23 03:45:09
Unrelated, leave this out of the patch.
meade_UTC10
2016/03/29 06:27:37
I don't remember what I was doing here :o removed
|
| + |
| LengthValue() {} |
| virtual LengthValue* addInternal(const LengthValue* other, ExceptionState&); |
| @@ -43,8 +45,6 @@ protected: |
| && unit != CSSPrimitiveValue::UnitType::QuirkyEms |
| && unit != CSSPrimitiveValue::UnitType::UserUnits; |
| } |
| - |
| - static const int kNumSupportedUnits = 15; |
| }; |
| DEFINE_TYPE_CASTS(LengthValue, StyleValue, value, |