Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp

Issue 2972533002: Support C and Objective-C in jumbo base scripts. (Closed)
Patch Set: Drop testing code again Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698