| Index: third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValuePool.cpp b/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| index cefc7db287715ddeaef242f669d68bd682a21c3e..095b1a3f612f463b4b3750ec09ff62da941621fc 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValuePool.cpp
|
| @@ -26,7 +26,7 @@
|
| #include "config.h"
|
| #include "core/css/CSSValuePool.h"
|
|
|
| -#include "core/css/CSSStringValueBase.h"
|
| +#include "core/css/CSSStringValues.h"
|
| #include "core/css/CSSValueList.h"
|
| #include "core/css/parser/CSSParser.h"
|
| #include "core/style/ComputedStyle.h"
|
| @@ -64,9 +64,9 @@ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSValuePool::createIdentifierValue(CS
|
| return m_identifierValueCache[ident];
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSValuePool::createIdentifierValue(CSSPropertyID ident)
|
| +PassRefPtrWillBeRawPtr<CSSCustomIdentValue> CSSValuePool::createIdentifierValue(CSSPropertyID ident)
|
| {
|
| - return CSSPrimitiveValue::createIdentifier(ident);
|
| + return CSSCustomIdentValue::create(ident);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSValuePool::createColorValue(unsigned rgbValue)
|
|
|