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

Unified Diff: Source/platform/audio/AudioSourceProviderClient.h

Issue 294053006: Oilpan: Use transition types for HTMLMediaElement and make AudioSourceProviderClient a GC mixin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed build fix Created 6 years, 6 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
« no previous file with comments | « Source/modules/webaudio/MediaStreamAudioSourceNode.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/AudioSourceProviderClient.h
diff --git a/Source/platform/audio/AudioSourceProviderClient.h b/Source/platform/audio/AudioSourceProviderClient.h
index 1756424c50f97e3172f3e9733a6a4603cadf9d44..c658d9459da521a7159ca4dc4dab4f9439b6a1f5 100644
--- a/Source/platform/audio/AudioSourceProviderClient.h
+++ b/Source/platform/audio/AudioSourceProviderClient.h
@@ -25,13 +25,16 @@
#ifndef AudioSourceProviderClient_h
#define AudioSourceProviderClient_h
+#include "platform/heap/Handle.h"
+
namespace WebCore {
-class AudioSourceProviderClient {
+class AudioSourceProviderClient : public WillBeGarbageCollectedMixin {
public:
virtual void setFormat(size_t numberOfChannels, float sampleRate) = 0;
virtual void lock() { }
virtual void unlock() { }
+ virtual void trace(Visitor*) { }
protected:
virtual ~AudioSourceProviderClient() { }
};
« no previous file with comments | « Source/modules/webaudio/MediaStreamAudioSourceNode.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698