summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/svg/svg_number_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/svg/svg_number_list.h')
-rw-r--r--chromium/third_party/blink/renderer/core/svg/svg_number_list.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/chromium/third_party/blink/renderer/core/svg/svg_number_list.h b/chromium/third_party/blink/renderer/core/svg/svg_number_list.h
index 89eb0affe06..860f379edbe 100644
--- a/chromium/third_party/blink/renderer/core/svg/svg_number_list.h
+++ b/chromium/third_party/blink/renderer/core/svg/svg_number_list.h
@@ -34,6 +34,7 @@
#include "third_party/blink/renderer/core/svg/properties/svg_list_property_helper.h"
#include "third_party/blink/renderer/core/svg/svg_number.h"
#include "third_party/blink/renderer/core/svg/svg_parsing_error.h"
+#include "third_party/blink/renderer/platform/wtf/casting.h"
namespace blink {
@@ -72,7 +73,12 @@ class SVGNumberList final
SVGParsingError Parse(const CharType*& ptr, const CharType* end);
};
-DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGNumberList);
+template <>
+struct DowncastTraits<SVGNumberList> {
+ static bool AllowFrom(const SVGPropertyBase& value) {
+ return value.GetType() == SVGNumberList::ClassType();
+ }
+};
} // namespace blink