summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc b/chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc
index fd95d13cd49..86a7a8b13d0 100644
--- a/chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc
+++ b/chromium/third_party/blink/renderer/core/animation/animation_input_helpers.cc
@@ -79,7 +79,7 @@ CSSPropertyID AnimationInputHelpers::KeyframeAttributeToCSSProperty(
builder.Append('-');
builder.Append(property[i]);
}
- return cssPropertyID(document.GetExecutionContext(), builder.ToString());
+ return CssPropertyID(document.GetExecutionContext(), builder.ToString());
}
CSSPropertyID AnimationInputHelpers::KeyframeAttributeToPresentationAttribute(
@@ -92,7 +92,7 @@ CSSPropertyID AnimationInputHelpers::KeyframeAttributeToPresentationAttribute(
String unprefixed_property = RemoveSVGPrefix(property);
if (SVGElement::IsAnimatableCSSProperty(QualifiedName(
g_null_atom, AtomicString(unprefixed_property), g_null_atom))) {
- return cssPropertyID(element->GetExecutionContext(), unprefixed_property);
+ return CssPropertyID(element->GetExecutionContext(), unprefixed_property);
}
return CSSPropertyID::kInvalid;
}