summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc
index 5b7d8f892d8..0352962c3ad 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/inline_size_custom.cc
@@ -9,13 +9,13 @@
#include "third_party/blink/renderer/core/layout/layout_object.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* InlineSize::ParseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext&) const {
- return CSSParsingUtils::ConsumeWidthOrHeight(range, context);
+ return css_parsing_utils::ConsumeWidthOrHeight(range, context);
}
bool InlineSize::IsLayoutDependent(const ComputedStyle* style,
@@ -23,5 +23,5 @@ bool InlineSize::IsLayoutDependent(const ComputedStyle* style,
return layout_object && layout_object->IsBox();
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink