| Index: media/base/video_decoder.h
|
| diff --git a/media/base/video_decoder.h b/media/base/video_decoder.h
|
| index 904a6fd97823e25b691df209c8c1675da92da9cd..80700b9e503666fe8206de7a51f8f29150c1f9c7 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.
|
| @@ -75,11 +77,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);
|
| };
|
|
|
|
|