Chromium Code Reviews

Unified Diff: Source/core/events/ResourceProgressEvent.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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/events/ResourceProgressEvent.cpp
diff --git a/Source/core/events/ResourceProgressEvent.cpp b/Source/core/events/ResourceProgressEvent.cpp
index 59d10d4d27d3b90ca3c3e388afd8c1edfda0fbec..08fd75b2533f636a932341f8d46e0e637511352b 100644
--- a/Source/core/events/ResourceProgressEvent.cpp
+++ b/Source/core/events/ResourceProgressEvent.cpp
@@ -51,4 +51,9 @@ const AtomicString& ResourceProgressEvent::interfaceName() const
return EventNames::ResourceProgressEvent;
}
+void ResourceProgressEvent::trace(Visitor* visitor)
+{
+ ProgressEvent::trace(visitor);
+}
+
}

Powered by Google App Engine