| Index: content/common/gpu/media/dxva_video_decode_accelerator.h
|
| diff --git a/content/common/gpu/media/dxva_video_decode_accelerator.h b/content/common/gpu/media/dxva_video_decode_accelerator.h
|
| index 7bff907ece3e3eae2cd516b2ab7036ba9537911b..74ca5990b47cb33069c5727bdf05df4d1e84a034 100644
|
| --- a/content/common/gpu/media/dxva_video_decode_accelerator.h
|
| +++ b/content/common/gpu/media/dxva_video_decode_accelerator.h
|
| @@ -18,7 +18,6 @@
|
| #include "base/threading/non_thread_safe.h"
|
| #include "base/win/scoped_comptr.h"
|
| #include "content/common/content_export.h"
|
| -#include "content/common/gpu/media/video_decode_accelerator_impl.h"
|
| #include "media/video/video_decode_accelerator.h"
|
|
|
| interface IMFSample;
|
| @@ -31,7 +30,7 @@ namespace content {
|
| // This class lives on a single thread and DCHECKs that it is never accessed
|
| // from any other.
|
| class CONTENT_EXPORT DXVAVideoDecodeAccelerator
|
| - : public VideoDecodeAcceleratorImpl,
|
| + : public media::VideoDecodeAccelerator,
|
| NON_EXPORTED_BASE(public base::NonThreadSafe) {
|
| public:
|
| enum State {
|
| @@ -57,6 +56,7 @@ class CONTENT_EXPORT DXVAVideoDecodeAccelerator
|
| virtual void Flush() OVERRIDE;
|
| virtual void Reset() OVERRIDE;
|
| virtual void Destroy() OVERRIDE;
|
| + virtual bool CanDecodeOnIOThread() OVERRIDE;
|
|
|
| private:
|
| typedef void* EGLConfig;
|
|
|