summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc
index 762006e8499..9620b075c17 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/padding_left_custom.cc
@@ -12,7 +12,7 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* PaddingLeft::ParseSingleValue(
CSSParserTokenRange& range,
@@ -20,7 +20,7 @@ const CSSValue* PaddingLeft::ParseSingleValue(
const CSSParserLocalContext&) const {
return ConsumeLengthOrPercent(
range, context.Mode(), kValueRangeNonNegative,
- CSSPropertyParserHelpers::UnitlessQuirk::kAllow);
+ css_property_parser_helpers::UnitlessQuirk::kAllow);
}
bool PaddingLeft::IsLayoutDependent(const ComputedStyle* style,
@@ -44,5 +44,5 @@ const CSSValue* PaddingLeft::CSSValueFromComputedStyleInternal(
ToLayoutBox(layout_object)->ComputedCSSPaddingLeft(), style);
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink