summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc
index 60a76b70e7e..6ff737c2e17 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/tab_size_custom.cc
@@ -9,17 +9,17 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* TabSize::ParseSingleValue(CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext&) const {
CSSPrimitiveValue* parsed_value =
- CSSPropertyParserHelpers::ConsumeInteger(range, 0);
+ css_property_parser_helpers::ConsumeInteger(range, 0);
if (parsed_value)
return parsed_value;
- return CSSPropertyParserHelpers::ConsumeLength(range, context.Mode(),
- kValueRangeNonNegative);
+ return css_property_parser_helpers::ConsumeLength(range, context.Mode(),
+ kValueRangeNonNegative);
}
const CSSValue* TabSize::CSSValueFromComputedStyleInternal(
@@ -34,5 +34,5 @@ const CSSValue* TabSize::CSSValueFromComputedStyleInternal(
: CSSPrimitiveValue::UnitType::kPixels);
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink