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

Unified Diff: webrtc/audio_receive_stream.h

Issue 1226123005: Define Stream base classes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review follow-up 3 Created 5 years, 5 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 | « talk/media/webrtc/webrtcvideoengine2_unittest.cc ('k') | webrtc/audio_send_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio_receive_stream.h
diff --git a/webrtc/audio_receive_stream.h b/webrtc/audio_receive_stream.h
index c68d2647f20beb2142877558686764783f4b6571..99dee96e3f5bcd643948e6ba1d0a248273511e9c 100644
--- a/webrtc/audio_receive_stream.h
+++ b/webrtc/audio_receive_stream.h
@@ -16,13 +16,14 @@
#include <vector>
#include "webrtc/config.h"
+#include "webrtc/stream.h"
#include "webrtc/typedefs.h"
namespace webrtc {
class AudioDecoder;
-class AudioReceiveStream {
+class AudioReceiveStream : public ReceiveStream {
public:
struct Stats {};
@@ -51,9 +52,6 @@ class AudioReceiveStream {
};
virtual Stats GetStats() const = 0;
-
- protected:
- virtual ~AudioReceiveStream() {}
};
} // namespace webrtc
« no previous file with comments | « talk/media/webrtc/webrtcvideoengine2_unittest.cc ('k') | webrtc/audio_send_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698