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 918f758b255adc57d60047b7d923104c8459b74c..dc663be345acb62f4d01863b947722e2e52fcac8 100644 |
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp |
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPICursor.cpp |
@@ -42,11 +42,11 @@ const CSSValue* CSSPropertyAPICursor::parseSingleValue( |
} |
CSSValueID id = range.peek().id(); |
- if (!range.atEnd() && context->isUseCounterRecordingEnabled()) { |
+ if (!range.atEnd()) { |
if (id == CSSValueWebkitZoomIn) |
- context->useCounter()->count(UseCounter::PrefixedCursorZoomIn); |
+ context->count(UseCounter::PrefixedCursorZoomIn); |
else if (id == CSSValueWebkitZoomOut) |
- context->useCounter()->count(UseCounter::PrefixedCursorZoomOut); |
+ context->count(UseCounter::PrefixedCursorZoomOut); |
} |
CSSValue* cursorType = nullptr; |
if (id == CSSValueHand) { |