| Index: third_party/WebKit/Source/core/css/cssom/CSSLengthValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.cpp
|
| index fead7ea8c7c15b8e19f8e648482522576ab56101..8db5b554cf3789f958b7f35bc71ccc225b95557c 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSLengthValue.cpp
|
| @@ -5,8 +5,8 @@
|
| #include "core/css/cssom/CSSLengthValue.h"
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| +#include "core/css/cssom/CSSSimpleLength.h"
|
| #include "core/css/cssom/CalcDictionary.h"
|
| -#include "core/css/cssom/SimpleLength.h"
|
| #include "core/css/cssom/StyleCalcLength.h"
|
| #include "wtf/HashMap.h"
|
|
|
| @@ -28,7 +28,7 @@ CSSLengthValue* CSSLengthValue::from(const String& cssString, ExceptionState& ex
|
|
|
| CSSLengthValue* CSSLengthValue::from(double value, const String& type, ExceptionState&)
|
| {
|
| - return SimpleLength::create(value, unitFromName(type));
|
| + return CSSSimpleLength::create(value, unitFromName(type));
|
| }
|
|
|
| CSSLengthValue* CSSLengthValue::from(const CalcDictionary& dictionary, ExceptionState& exceptionState)
|
|
|