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

Unified Diff: webrtc/audio/audio_sink.h

Issue 1551813002: Storing raw audio sink for default audio track. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Adding unit tests for SetRawAudioSink. Created 4 years, 11 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: webrtc/audio/audio_sink.h
diff --git a/webrtc/audio/audio_sink.h b/webrtc/audio/audio_sink.h
index d022b32855daf553482437db9a9dd87c56df163c..205bb7f4abf16827dc8d35c934208b7bf5414b14 100644
--- a/webrtc/audio/audio_sink.h
+++ b/webrtc/audio/audio_sink.h
@@ -19,10 +19,12 @@
#include <inttypes.h>
#include <stddef.h>
+#include "webrtc/base/refcount.h"
+
namespace webrtc {
// Represents a simple push audio sink.
-class AudioSinkInterface {
+class AudioSinkInterface : public rtc::RefCountInterface {
public:
virtual ~AudioSinkInterface() {}

Powered by Google App Engine
This is Rietveld 408576698