Chromium Code Reviews| Index: media/video/video_decode_accelerator.cc |
| diff --git a/media/video/video_decode_accelerator.cc b/media/video/video_decode_accelerator.cc |
| index 21b1d0057e7371be028cd28c0852c62ccbdc12f2..263c612751e26127eff107d792f262f2862cf80c 100644 |
| --- a/media/video/video_decode_accelerator.cc |
| +++ b/media/video/video_decode_accelerator.cc |
| @@ -21,6 +21,15 @@ GLenum VideoDecodeAccelerator::GetSurfaceInternalFormat() const { |
| return GL_RGBA; |
| } |
| +VideoDecodeAccelerator::SupportedProfile::SupportedProfile() |
| + : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN), |
| + max_resolution(gfx::Size(0, 0)), |
| + min_resolution(gfx::Size(0, 0)) { |
|
xhwang
2015/03/26 16:21:48
nit: not needed; this is handled by the default ct
|
| +} |
| + |
| +VideoDecodeAccelerator::SupportedProfile::~SupportedProfile() { |
| +} |
| + |
| } // namespace media |
| namespace base { |