| Index: content/common/gpu/media/gpu_video_encode_accelerator.cc
|
| diff --git a/content/common/gpu/media/gpu_video_encode_accelerator.cc b/content/common/gpu/media/gpu_video_encode_accelerator.cc
|
| index 1f4c395cb17a121747fc45d13009751b41125534..df011fd49ce97944918ea356db674fd9ad568b50 100644
|
| --- a/content/common/gpu/media/gpu_video_encode_accelerator.cc
|
| +++ b/content/common/gpu/media/gpu_video_encode_accelerator.cc
|
| @@ -163,7 +163,7 @@ void GpuVideoEncodeAccelerator::OnWillDestroyStub() {
|
| }
|
|
|
| // static
|
| -std::vector<media::VideoEncodeAccelerator::SupportedProfile>
|
| +std::vector<gpu::VideoEncodeAcceleratorSupportedProfile>
|
| GpuVideoEncodeAccelerator::GetSupportedProfiles() {
|
| #if defined(OS_CHROMEOS) && defined(USE_X11) && defined(ARCH_CPU_ARMEL)
|
| // This is a work-around for M39 because the video device is not ready at
|
| @@ -173,7 +173,7 @@ GpuVideoEncodeAccelerator::GetSupportedProfiles() {
|
| #endif
|
| scoped_ptr<media::VideoEncodeAccelerator> encoder = CreateEncoder();
|
| if (!encoder)
|
| - return std::vector<media::VideoEncodeAccelerator::SupportedProfile>();
|
| + return std::vector<gpu::VideoEncodeAcceleratorSupportedProfile>();
|
| return encoder->GetSupportedProfiles();
|
| }
|
|
|
|
|