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

Unified Diff: media/base/video_decoder.h

Issue 14348007: Reland: Remove reference counting from media::VideoDecoder and friends. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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
« no previous file with comments | « media/base/pipeline_unittest.cc ('k') | media/base/video_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_decoder.h
diff --git a/media/base/video_decoder.h b/media/base/video_decoder.h
index 97566da048687f6ba03d8b254e468c111f2f7091..46116456316dcccfc45fca40e48175406ff6ee33 100644
--- a/media/base/video_decoder.h
+++ b/media/base/video_decoder.h
@@ -16,8 +16,7 @@ namespace media {
class DemuxerStream;
class VideoFrame;
-class MEDIA_EXPORT VideoDecoder
- : public base::RefCountedThreadSafe<VideoDecoder> {
+class MEDIA_EXPORT VideoDecoder {
public:
// Status codes for read operations on VideoDecoder.
enum Status {
@@ -26,6 +25,9 @@ class MEDIA_EXPORT VideoDecoder
kDecryptError // Decrypting error happened.
};
+ VideoDecoder();
+ virtual ~VideoDecoder();
+
// Initializes a VideoDecoder with the given DemuxerStream, executing the
// |status_cb| upon completion.
// |statistics_cb| is used to update the global pipeline statistics.
@@ -77,11 +79,7 @@ class MEDIA_EXPORT VideoDecoder
// use a fixed set of VideoFrames for decoding.
virtual bool HasOutputFrameAvailable() const;
- protected:
- friend class base::RefCountedThreadSafe<VideoDecoder>;
- virtual ~VideoDecoder();
- VideoDecoder();
-
+ private:
DISALLOW_COPY_AND_ASSIGN(VideoDecoder);
};
« no previous file with comments | « media/base/pipeline_unittest.cc ('k') | media/base/video_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698