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

Unified Diff: media/filters/audio_renderer_impl.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/audio_renderer_impl.h
diff --git a/media/filters/audio_renderer_impl.h b/media/filters/audio_renderer_impl.h
index e39f75b10693b7cf2a54980671e90bad2122f374..c8f135367d7ec41a908d9958c67c7dbae5235ec8 100644
--- a/media/filters/audio_renderer_impl.h
+++ b/media/filters/audio_renderer_impl.h
@@ -38,7 +38,6 @@ class MEDIA_EXPORT AudioRendererImpl
// Methods called on Render thread ------------------------------------------
// An AudioRendererSink is used as the destination for the rendered audio.
explicit AudioRendererImpl(media::AudioRendererSink* sink);
- virtual ~AudioRendererImpl();
// Methods called on pipeline thread ----------------------------------------
// Filter implementation.
@@ -63,6 +62,8 @@ class MEDIA_EXPORT AudioRendererImpl
FRIEND_TEST_ALL_PREFIXES(AudioRendererImplTest, EndOfStream);
FRIEND_TEST_ALL_PREFIXES(AudioRendererImplTest, Underflow_EndOfStream);
+ virtual ~AudioRendererImpl();
+
// Callback from the audio decoder delivering decoded audio samples.
void DecodedAudioReady(scoped_refptr<Buffer> buffer);

Powered by Google App Engine
This is Rietveld 408576698