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 7449a2aec7f56c087b59183c1d8f70494a077a65..6bb8ef6d2dd5b9e059be8d8925a3eb793db2b8c8 100644 |
| --- a/media/video/video_decode_accelerator.cc |
| +++ b/media/video/video_decode_accelerator.cc |
| @@ -30,12 +30,15 @@ GLenum VideoDecodeAccelerator::GetSurfaceInternalFormat() const { |
| } |
| VideoDecodeAccelerator::SupportedProfile::SupportedProfile() |
| - : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN) { |
| -} |
| + : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN) {} |
|
Pawel Osciak
2015/12/05 00:18:55
Nit: we should probably either change style for al
liberato (no reviews please)
2015/12/07 19:04:39
Done, changed 35 to match.
|
| VideoDecodeAccelerator::SupportedProfile::~SupportedProfile() { |
| } |
| +VideoDecodeAccelerator::Capabilities::Capabilities() : flags(NO_FLAGS) {} |
| + |
| +VideoDecodeAccelerator::Capabilities::~Capabilities() {} |
| + |
| } // namespace media |
| namespace std { |