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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.h

Issue 2454683002: [wrapper-tracing] Fix tracing of EventTargetWithInlineData (Closed)
Patch Set: Created 4 years, 2 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/xmlhttprequest/XMLHttpRequestEventTarget.h
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.h b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.h
index 85ba0f6219cd1b9a85578c50f4244ac86338cd3c..9cc533c300757f1845106699063fd616943b2425 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.h
@@ -47,6 +47,10 @@ class XMLHttpRequestEventTarget : public EventTargetWithInlineData {
DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart);
DEFINE_ATTRIBUTE_EVENT_LISTENER(progress);
DEFINE_ATTRIBUTE_EVENT_LISTENER(timeout);
+
+ DEFINE_INLINE_VIRTUAL_TRACE_WRAPPERS() {
Marcel Hlopko 2016/10/26 11:48:11 Also this shouldn't be needed...
Michael Lippautz 2016/10/26 11:53:48 Done.
+ EventTargetWithInlineData::traceWrappers(visitor);
+ }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698