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

Unified Diff: Source/modules/webaudio/AudioProcessingEvent.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/webaudio/AudioProcessingEvent.cpp
diff --git a/Source/modules/webaudio/AudioProcessingEvent.cpp b/Source/modules/webaudio/AudioProcessingEvent.cpp
index ac8eb99bcbc54bf9152e83b4af9af05f93dcc3dd..a00f779a81cf718736b197ce39d9cc0064698429 100644
--- a/Source/modules/webaudio/AudioProcessingEvent.cpp
+++ b/Source/modules/webaudio/AudioProcessingEvent.cpp
@@ -64,6 +64,11 @@ const AtomicString& AudioProcessingEvent::interfaceName() const
return EventNames::AudioProcessingEvent;
}
+void AudioProcessingEvent::trace(Visitor* visitor)
+{
+ Event::trace(visitor);
+}
+
} // namespace WebCore
#endif // ENABLE(WEB_AUDIO)

Powered by Google App Engine
This is Rietveld 408576698