summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc
index 9fc2ec591a4..9565047cd11 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/align_self_custom.cc
@@ -9,14 +9,14 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* AlignSelf::ParseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext&) const {
- return CSSParsingUtils::ConsumeSelfPositionOverflowPosition(
- range, CSSParsingUtils::IsSelfPositionKeyword);
+ return css_parsing_utils::ConsumeSelfPositionOverflowPosition(
+ range, css_parsing_utils::IsSelfPositionKeyword);
}
const CSSValue* AlignSelf::CSSValueFromComputedStyleInternal(
@@ -29,5 +29,5 @@ const CSSValue* AlignSelf::CSSValueFromComputedStyleInternal(
style.AlignSelf());
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink