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

Unified Diff: media/filters/dummy_demuxer.h

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: Created 8 years, 8 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: media/filters/dummy_demuxer.h
diff --git a/media/filters/dummy_demuxer.h b/media/filters/dummy_demuxer.h
index 4cb72fc19e18c33c94330b9cdabc93a3294a037a..21b5e1fcd4e016e399c9928fab7533630a063847 100644
--- a/media/filters/dummy_demuxer.h
+++ b/media/filters/dummy_demuxer.h
@@ -42,7 +42,6 @@ class DummyDemuxerStream : public DemuxerStream {
class MEDIA_EXPORT DummyDemuxer : public Demuxer {
public:
DummyDemuxer(bool has_video, bool has_audio, bool local_source);
- virtual ~DummyDemuxer();
// Demuxer implementation.
virtual void Initialize(DemuxerHost* host,
@@ -55,6 +54,8 @@ class MEDIA_EXPORT DummyDemuxer : public Demuxer {
virtual bool IsSeekable() OVERRIDE;
private:
+ virtual ~DummyDemuxer();
+
bool has_video_;
bool has_audio_;
bool local_source_;

Powered by Google App Engine
This is Rietveld 408576698