| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp
|
| index 7df161d3e75834e91606a2a2ab15820b76cb70b5..7deca39017608190ba50fb3bab18fceebe465267 100644
|
| --- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp
|
| @@ -14,8 +14,6 @@
|
| class CSSParserLocalContext;
|
| namespace blink {
|
|
|
| -using CSSCursorImageValue = cssvalue::CSSCursorImageValue;
|
| -
|
| const CSSValue* CSSPropertyAPICursor::parseSingleValue(
|
| CSSParserTokenRange& range,
|
| const CSSParserContext& context,
|
| @@ -39,8 +37,8 @@ const CSSValue* CSSPropertyAPICursor::parseSingleValue(
|
| if (!list)
|
| list = CSSValueList::CreateCommaSeparated();
|
|
|
| - list->Append(
|
| - *CSSCursorImageValue::Create(*image, hot_spot_specified, hot_spot));
|
| + list->Append(*cssvalue::CSSCursorImageValue::Create(
|
| + *image, hot_spot_specified, hot_spot));
|
| if (!CSSPropertyParserHelpers::ConsumeCommaIncludingWhitespace(range))
|
| return nullptr;
|
| }
|
|
|