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

Unified Diff: media/base/demuxer.cc

Issue 8936014: Removing DataSource from Filter hierarchy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved preload into a separate file. Created 9 years 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: media/base/demuxer.cc
diff --git a/media/base/demuxer.cc b/media/base/demuxer.cc
index 83bfce348f5a4fcec02b5e100a986c81f100d609..b6b2d18119a2df8379b03b74c05ad36ac874536a 100644
--- a/media/base/demuxer.cc
+++ b/media/base/demuxer.cc
@@ -8,11 +8,13 @@
namespace media {
+DemuxerHost::~DemuxerHost() {}
+
Demuxer::Demuxer() : host_(NULL) {}
Demuxer::~Demuxer() {}
-void Demuxer::set_host(FilterHost* host) {
+void Demuxer::set_host(DemuxerHost* host) {
DCHECK(host);
DCHECK(!host_);
host_ = host;
« no previous file with comments | « media/base/demuxer.h ('k') | media/base/filter_host.h » ('j') | media/media.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698