| Index: media/filters/vpx_video_decoder.h
|
| diff --git a/media/filters/vpx_video_decoder.h b/media/filters/vpx_video_decoder.h
|
| index cc02e89aad0b57027818b3f1702c8f8d5e9f2669..293f10131cdcc0be4c4cf7be31ce8cae1e5772d1 100644
|
| --- a/media/filters/vpx_video_decoder.h
|
| +++ b/media/filters/vpx_video_decoder.h
|
| @@ -17,7 +17,7 @@ struct vpx_codec_ctx;
|
| struct vpx_image;
|
|
|
| namespace base {
|
| -class MessageLoopProxy;
|
| +class SingleThreadTaskRunner;
|
| }
|
|
|
| namespace media {
|
| @@ -29,7 +29,7 @@ namespace media {
|
| class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder {
|
| public:
|
| explicit VpxVideoDecoder(
|
| - const scoped_refptr<base::MessageLoopProxy>& message_loop);
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
|
| virtual ~VpxVideoDecoder();
|
|
|
| // VideoDecoder implementation.
|
| @@ -67,7 +67,7 @@ class MEDIA_EXPORT VpxVideoDecoder : public VideoDecoder {
|
| const struct vpx_image* vpx_image_alpha,
|
| scoped_refptr<VideoFrame>* video_frame);
|
|
|
| - scoped_refptr<base::MessageLoopProxy> message_loop_;
|
| + scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
| base::WeakPtrFactory<VpxVideoDecoder> weak_factory_;
|
| base::WeakPtr<VpxVideoDecoder> weak_this_;
|
|
|
|
|