| Index: third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| index 2a0a0a7cb7af1aee499ed8f9fa2c21f2e2244ecb..2b43010f1585af5c1a6496d80129d53d78ced5de 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| @@ -5,7 +5,7 @@
|
| #include "core/css/cssom/StyleValueFactory.h"
|
|
|
| #include "core/css/CSSValue.h"
|
| -#include "core/css/cssom/SimpleLength.h"
|
| +#include "core/css/cssom/CSSSimpleLength.h"
|
| #include "core/css/cssom/StyleValue.h"
|
|
|
| namespace blink {
|
| @@ -15,7 +15,7 @@ StyleValue* StyleValueFactory::create(CSSPropertyID propertyID, const CSSValue&
|
| if (value.isPrimitiveValue()) {
|
| const CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(value);
|
| if (primitiveValue.isLength() && !primitiveValue.isCalculated()) {
|
| - return SimpleLength::create(primitiveValue.getDoubleValue(), primitiveValue.typeWithCalcResolved());
|
| + return CSSSimpleLength::create(primitiveValue.getDoubleValue(), primitiveValue.typeWithCalcResolved());
|
| }
|
| }
|
| // TODO(meade): Implement the rest.
|
|
|