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

Unified Diff: media/filters/dummy_demuxer.cc

Issue 10067035: RefCounted types should not have public destructors, media/ and gpu/ edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 7 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 | « media/filters/dummy_demuxer.h ('k') | media/filters/ffmpeg_audio_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/dummy_demuxer.cc
diff --git a/media/filters/dummy_demuxer.cc b/media/filters/dummy_demuxer.cc
index 1b3b3690b55572ddb79465045ef53e68804ebcca..4e112cff3670aa132f6d3a34e82e510dfb6315de 100644
--- a/media/filters/dummy_demuxer.cc
+++ b/media/filters/dummy_demuxer.cc
@@ -44,8 +44,6 @@ DummyDemuxer::DummyDemuxer(bool has_video, bool has_audio)
new DummyDemuxerStream(DemuxerStream::VIDEO);
}
-DummyDemuxer::~DummyDemuxer() {}
-
void DummyDemuxer::Initialize(DemuxerHost* host,
const PipelineStatusCB& status_cb) {
host->SetDuration(media::kInfiniteDuration());
@@ -64,4 +62,6 @@ int DummyDemuxer::GetBitrate() {
return 0;
}
+DummyDemuxer::~DummyDemuxer() {}
+
} // namespace media
« no previous file with comments | « media/filters/dummy_demuxer.h ('k') | media/filters/ffmpeg_audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698