summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc b/chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc
index 8663381d549..c426a54df67 100644
--- a/chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc
+++ b/chromium/third_party/blink/renderer/core/css/properties/longhands/background_size_custom.cc
@@ -10,13 +10,13 @@
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
-namespace CSSLonghand {
+namespace css_longhand {
const CSSValue* BackgroundSize::ParseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext& local_context) const {
- return CSSParsingUtils::ParseBackgroundOrMaskSize(
+ return css_parsing_utils::ParseBackgroundOrMaskSize(
range, context, local_context, WebFeature::kNegativeBackgroundSize);
}
@@ -30,5 +30,5 @@ const CSSValue* BackgroundSize::CSSValueFromComputedStyleInternal(
return ComputedStyleUtils::BackgroundImageOrWebkitMaskSize(style, fill_layer);
}
-} // namespace CSSLonghand
+} // namespace css_longhand
} // namespace blink