summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc b/chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc
index aca65e99144..f8149a62326 100644
--- a/chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc
+++ b/chromium/third_party/blink/renderer/core/svg/svg_text_path_element.cc
@@ -86,7 +86,9 @@ void SVGTextPathElement::ClearResourceReferences() {
RemoveAllOutgoingReferences();
}
-void SVGTextPathElement::SvgAttributeChanged(const QualifiedName& attr_name) {
+void SVGTextPathElement::SvgAttributeChanged(
+ const SvgAttributeChangedParams& params) {
+ const QualifiedName& attr_name = params.name;
if (SVGURIReference::IsKnownAttribute(attr_name)) {
SVGElement::InvalidationGuard invalidation_guard(this);
BuildPendingResource();
@@ -106,7 +108,7 @@ void SVGTextPathElement::SvgAttributeChanged(const QualifiedName& attr_name) {
return;
}
- SVGTextContentElement::SvgAttributeChanged(attr_name);
+ SVGTextContentElement::SvgAttributeChanged(params);
}
LayoutObject* SVGTextPathElement::CreateLayoutObject(const ComputedStyle&,