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

Unified Diff: Source/modules/mediastream/MediaStreamEvent.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/modules/mediastream/MediaStreamEvent.cpp
diff --git a/Source/modules/mediastream/MediaStreamEvent.cpp b/Source/modules/mediastream/MediaStreamEvent.cpp
index bd401619c4782ee26d475e64ee451cf41302712c..874bcb80317be01ae79aebb8fff385a9f4d532b6 100644
--- a/Source/modules/mediastream/MediaStreamEvent.cpp
+++ b/Source/modules/mediastream/MediaStreamEvent.cpp
@@ -88,5 +88,10 @@ const AtomicString& MediaStreamEvent::interfaceName() const
return EventNames::MediaStreamEvent;
}
+void MediaStreamEvent::trace(Visitor* visitor)
+{
+ Event::trace(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698