summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc
index 5784e093cf4..04a48a00e80 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/counter_reset_custom.cc
@@ -9,15 +9,16 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const int kCounterResetDefaultValue = 0;
const CSSValue* CounterReset::ParseSingleValue(
CSSParserTokenRange& range,
- const CSSParserContext&,
+ const CSSParserContext& context,
const CSSParserLocalContext&) const {
- return CSSParsingUtils::ConsumeCounter(range, kCounterResetDefaultValue);
+ return css_parsing_utils::ConsumeCounter(range, context,
+ kCounterResetDefaultValue);
}
const CSSValue* CounterReset::CSSValueFromComputedStyleInternal(
@@ -29,5 +30,5 @@ const CSSValue* CounterReset::CSSValueFromComputedStyleInternal(
return ComputedStyleUtils::ValueForCounterDirectives(style, false);
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink