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

Unified Diff: media/filters/video_frame_generator.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/video_frame_generator.h ('k') | media/filters/video_renderer_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_frame_generator.cc
diff --git a/media/filters/video_frame_generator.cc b/media/filters/video_frame_generator.cc
index ece499c291399155fe420ed43cdaeccf11cea2d8..c901b9ea65107a82337d4cb46965760276c33535 100644
--- a/media/filters/video_frame_generator.cc
+++ b/media/filters/video_frame_generator.cc
@@ -21,8 +21,6 @@ VideoFrameGenerator::VideoFrameGenerator(
frame_duration_(frame_duration) {
}
-VideoFrameGenerator::~VideoFrameGenerator() {}
-
void VideoFrameGenerator::Initialize(
const scoped_refptr<DemuxerStream>& stream,
const PipelineStatusCB& status_cb,
@@ -55,6 +53,8 @@ const gfx::Size& VideoFrameGenerator::natural_size() {
return natural_size_;
}
+VideoFrameGenerator::~VideoFrameGenerator() {}
+
void VideoFrameGenerator::InitializeOnDecoderThread(
const scoped_refptr<DemuxerStream>& /* stream */,
const PipelineStatusCB& status_cb,
« no previous file with comments | « media/filters/video_frame_generator.h ('k') | media/filters/video_renderer_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698