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 cd6f247d86cf1977ab02379dbfa2749393081268..9d3de5913738103acb5dd35c2242811ae3751339 100644 |
--- a/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h |
+++ b/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.h |
@@ -6,14 +6,14 @@ |
#define CSSLengthValue_h |
#include "core/css/CSSPrimitiveValue.h" |
-#include "core/css/cssom/StyleValue.h" |
+#include "core/css/cssom/CSSStyleValue.h" |
namespace blink { |
class CalcDictionary; |
class ExceptionState; |
-class CORE_EXPORT CSSLengthValue : public StyleValue { |
+class CORE_EXPORT CSSLengthValue : public CSSStyleValue { |
WTF_MAKE_NONCOPYABLE(CSSLengthValue); |
DEFINE_WRAPPERTYPEINFO(); |
public: |
@@ -48,11 +48,11 @@ protected: |
static const int kNumSupportedUnits = 15; |
}; |
-DEFINE_TYPE_CASTS(CSSLengthValue, StyleValue, value, |
- (value->type() == StyleValue::SimpleLengthType |
- || value->type() == StyleValue::CalcLengthType), |
- (value.type() == StyleValue::SimpleLengthType |
- || value.type() == StyleValue::CalcLengthType)); |
+DEFINE_TYPE_CASTS(CSSLengthValue, CSSStyleValue, value, |
+ (value->type() == CSSStyleValue::SimpleLengthType |
+ || value->type() == CSSStyleValue::CalcLengthType), |
+ (value.type() == CSSStyleValue::SimpleLengthType |
+ || value.type() == CSSStyleValue::CalcLengthType)); |
} // namespace blink |