| Index: media/filters/ffmpeg_video_decoder.h
|
| diff --git a/media/filters/ffmpeg_video_decoder.h b/media/filters/ffmpeg_video_decoder.h
|
| index 9df5fa913a6d0b34d93228f2b8663c2b682febee..a61d436ac17760b56d964787c3ef34e9206f167c 100644
|
| --- a/media/filters/ffmpeg_video_decoder.h
|
| +++ b/media/filters/ffmpeg_video_decoder.h
|
| @@ -17,7 +17,7 @@ struct AVCodecContext;
|
| struct AVFrame;
|
|
|
| namespace base {
|
| -class MessageLoopProxy;
|
| +class SingleThreadTaskRunner;
|
| }
|
|
|
| namespace media {
|
| @@ -29,7 +29,7 @@ class ScopedPtrAVFreeFrame;
|
| class MEDIA_EXPORT FFmpegVideoDecoder : public VideoDecoder {
|
| public:
|
| explicit FFmpegVideoDecoder(
|
| - const scoped_refptr<base::MessageLoopProxy>& message_loop);
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
|
| virtual ~FFmpegVideoDecoder();
|
|
|
| // VideoDecoder implementation.
|
| @@ -70,7 +70,7 @@ class MEDIA_EXPORT FFmpegVideoDecoder : public VideoDecoder {
|
| // Reset decoder and call |reset_cb_|.
|
| void DoReset();
|
|
|
| - scoped_refptr<base::MessageLoopProxy> message_loop_;
|
| + scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
| base::WeakPtrFactory<FFmpegVideoDecoder> weak_factory_;
|
| base::WeakPtr<FFmpegVideoDecoder> weak_this_;
|
|
|
|
|