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

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

Powered by Google App Engine
This is Rietveld 408576698