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

Unified Diff: Source/core/events/ProgressEvent.cpp

Issue 181153003: Make Event RefCountedGarbageCollected and implement trace() methods to the Event hierarcy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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: Source/core/events/ProgressEvent.cpp
diff --git a/Source/core/events/ProgressEvent.cpp b/Source/core/events/ProgressEvent.cpp
index d50bdad5edf8dc03b432c18269981707cec66889..0835160af95285647ba070bccfe4bfce38f7eead 100644
--- a/Source/core/events/ProgressEvent.cpp
+++ b/Source/core/events/ProgressEvent.cpp
@@ -68,4 +68,9 @@ const AtomicString& ProgressEvent::interfaceName() const
return EventNames::ProgressEvent;
}
+void ProgressEvent::trace(Visitor* visitor)
+{
+ Event::trace(visitor);
+}
+
}

Powered by Google App Engine
This is Rietveld 408576698