| Index: content/common/gpu/media/v4l2_video_encode_accelerator.cc
|
| diff --git a/content/common/gpu/media/v4l2_video_encode_accelerator.cc b/content/common/gpu/media/v4l2_video_encode_accelerator.cc
|
| index 12f88d0329d1835c5d5e5c6ca6c9c12deabd2e66..5e9342175209653cc05340b849e72aaf08e0dee5 100644
|
| --- a/content/common/gpu/media/v4l2_video_encode_accelerator.cc
|
| +++ b/content/common/gpu/media/v4l2_video_encode_accelerator.cc
|
| @@ -280,15 +280,15 @@ void V4L2VideoEncodeAccelerator::Destroy() {
|
| delete this;
|
| }
|
|
|
| -std::vector<media::VideoEncodeAccelerator::SupportedProfile>
|
| +std::vector<gpu::VideoEncodeAcceleratorSupportedProfile>
|
| V4L2VideoEncodeAccelerator::GetSupportedProfiles() {
|
| return GetSupportedProfilesStatic();
|
| }
|
|
|
| -std::vector<media::VideoEncodeAccelerator::SupportedProfile>
|
| +std::vector<gpu::VideoEncodeAcceleratorSupportedProfile>
|
| V4L2VideoEncodeAccelerator::GetSupportedProfilesStatic() {
|
| - std::vector<SupportedProfile> profiles;
|
| - SupportedProfile profile;
|
| + std::vector<gpu::VideoEncodeAcceleratorSupportedProfile> profiles;
|
| + gpu::VideoEncodeAcceleratorSupportedProfile profile;
|
|
|
| const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
|
| if (cmd_line->HasSwitch(switches::kEnableWebRtcHWVp8Encoding)) {
|
|
|