| Index: content/common/gpu/media/gpu_video_decode_accelerator.h
|
| diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.h b/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| index e59a76fb5c35169dd4b0fab8cb448e9bc02a46b3..63ddffeebe32be642b0762f3c37826de507c6fe7 100644
|
| --- a/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| +++ b/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| @@ -14,6 +14,7 @@
|
| #include "base/synchronization/waitable_event.h"
|
| #include "content/common/gpu/gpu_command_buffer_stub.h"
|
| #include "gpu/command_buffer/service/texture_manager.h"
|
| +#include "gpu/config/gpu_info.h"
|
| #include "ipc/ipc_listener.h"
|
| #include "ipc/ipc_sender.h"
|
| #include "media/video/video_decode_accelerator.h"
|
| @@ -64,6 +65,14 @@ class GpuVideoDecodeAccelerator
|
| void Initialize(const media::VideoCodecProfile profile,
|
| IPC::Message* init_done_msg);
|
|
|
| + // Static query for supported profiles. This query calls the appropriate
|
| + // platform-specific version.
|
| + static std::vector<gpu::VideoDecodeAcceleratorSupportedProfile>
|
| + GetSupportedProfiles();
|
| + static std::vector<gpu::VideoDecodeAcceleratorSupportedProfile>
|
| + ConvertMediaToGpuProfiles(const std::vector<
|
| + media::VideoDecodeAccelerator::SupportedProfile>& media_profiles);
|
| +
|
| private:
|
| class MessageFilter;
|
|
|
|
|