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

Unified Diff: media/filters/video_frame_generator.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: 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/gpu_video_decoder.cc ('k') | media/filters/video_frame_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_frame_generator.h
diff --git a/media/filters/video_frame_generator.h b/media/filters/video_frame_generator.h
index faf50fc1d4b2b66ce3dbf87a1548e53185dc7d61..54571455b4f8279ca461daba6700fd17441d6d59 100644
--- a/media/filters/video_frame_generator.h
+++ b/media/filters/video_frame_generator.h
@@ -26,7 +26,6 @@ class MEDIA_EXPORT VideoFrameGenerator : public VideoDecoder {
base::MessageLoopProxy* message_loop_proxy,
const gfx::Size& size,
const base::TimeDelta& frame_duration);
- virtual ~VideoFrameGenerator();
// VideoDecoder implementation.
virtual void Initialize(
@@ -38,6 +37,9 @@ class MEDIA_EXPORT VideoFrameGenerator : public VideoDecoder {
virtual void Stop(const base::Closure& closure) OVERRIDE;
virtual const gfx::Size& natural_size() OVERRIDE;
+ protected:
+ virtual ~VideoFrameGenerator();
+
private:
void InitializeOnDecoderThread(
const scoped_refptr<DemuxerStream>& stream,
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/filters/video_frame_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698