summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h')
-rw-r--r--chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h b/chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h
index 84a310532a6..0860fb5f8c1 100644
--- a/chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h
+++ b/chromium/third_party/blink/renderer/core/svg/svg_string_list_tear_off.h
@@ -42,11 +42,9 @@ class SVGStringListTearOff : public SVGPropertyTearOff<SVGStringList> {
public:
static SVGStringListTearOff* Create(
SVGStringList* target,
- SVGElement* context_element,
- PropertyIsAnimValType property_is_anim_val,
- const QualifiedName& attribute_name) {
- return new SVGStringListTearOff(target, context_element,
- property_is_anim_val, attribute_name);
+ SVGAnimatedPropertyBase* binding,
+ PropertyIsAnimValType property_is_anim_val) {
+ return new SVGStringListTearOff(target, binding, property_is_anim_val);
}
// SVGStringList DOM interface:
@@ -130,9 +128,8 @@ class SVGStringListTearOff : public SVGPropertyTearOff<SVGStringList> {
protected:
SVGStringListTearOff(SVGStringList*,
- SVGElement*,
- PropertyIsAnimValType,
- const QualifiedName&);
+ SVGAnimatedPropertyBase* binding,
+ PropertyIsAnimValType);
};
} // namespace blink