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

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: 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/video_frame_generator.h
diff --git a/media/filters/video_frame_generator.h b/media/filters/video_frame_generator.h
index 320a2820e70c16e934d90e31073ba26e6fc23467..dde0211fb4a48216ecb3adfd6637e2bd71727ab3 100644
--- a/media/filters/video_frame_generator.h
+++ b/media/filters/video_frame_generator.h
@@ -26,7 +26,6 @@ class MEDIA_EXPORT VideoFrameGenerator
base::MessageLoopProxy* message_loop_proxy,
const gfx::Size& size,
const base::TimeDelta& frame_duration);
- virtual ~VideoFrameGenerator();
// Filter implementation.
virtual void Stop(const base::Closure& callback) OVERRIDE;
@@ -40,6 +39,8 @@ class MEDIA_EXPORT VideoFrameGenerator
virtual const gfx::Size& natural_size() OVERRIDE;
private:
+ virtual ~VideoFrameGenerator();
+
void StopOnDecoderThread(const base::Closure& callback);
void InitializeOnDecoderThread(

Powered by Google App Engine
This is Rietveld 408576698