Index: third_party/WebKit/Source/core/svg/SVGElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp |
index 28f432cf033ac6bb146abe053c886419c1e9224c..862fb49dd6e706de51f1704434d24008b380d1ce 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp |
@@ -739,7 +739,7 @@ void SVGElement::addedEventListener(const AtomicString& eventType, RegisteredEve |
// Add event listener to all shadow tree DOM element instances |
HeapHashSet<WeakMember<SVGElement>> instances; |
collectInstancesForSVGElement(this, instances); |
- AddEventListenerOptions options = registeredListener.options(); |
+ AddEventListenerOptionsResolved options = registeredListener.options(); |
EventListener* listener = registeredListener.listener(); |
for (SVGElement* element : instances) { |
bool result = element->Node::addEventListenerInternal(eventType, listener, options); |