Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(906)

Unified Diff: third_party/WebKit/Source/core/svg/SVGElement.cpp

Issue 2137483003: Add UMA metrics for root scroller intervention to track forcing passive breakage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change layout test to a unit test Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698