summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc
index c040712a2a3..24e7d794ac2 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/margin_left_custom.cc
@@ -13,14 +13,15 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* MarginLeft::ParseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext&) const {
- return CSSParsingUtils::ConsumeMarginOrOffset(
- range, context.Mode(), CSSPropertyParserHelpers::UnitlessQuirk::kAllow);
+ return css_parsing_utils::ConsumeMarginOrOffset(
+ range, context.Mode(),
+ css_property_parser_helpers::UnitlessQuirk::kAllow);
}
bool MarginLeft::IsLayoutDependent(const ComputedStyle* style,
@@ -44,5 +45,5 @@ const CSSValue* MarginLeft::CSSValueFromComputedStyleInternal(
style);
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink