Index: media/cast/receiver/video_decoder.cc |
diff --git a/media/cast/receiver/video_decoder.cc b/media/cast/receiver/video_decoder.cc |
index 2c7a9fddb86c6011235cff3d7e6b72f13ef97f4a..1eaa6f346e0cccc90f839eb82502e487a85819d2 100644 |
--- a/media/cast/receiver/video_decoder.cc |
+++ b/media/cast/receiver/video_decoder.cc |
@@ -119,7 +119,7 @@ class VideoDecoder::Vp8Impl : public VideoDecoder::ImplBase { |
CHECK_EQ(VPX_CODEC_OK, vpx_codec_destroy(&context_)); |
} |
- virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE { |
+ virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) override { |
if (len <= 0 || vpx_codec_decode(&context_, |
data, |
static_cast<unsigned int>(len), |
@@ -183,7 +183,7 @@ class VideoDecoder::FakeImpl : public VideoDecoder::ImplBase { |
private: |
virtual ~FakeImpl() {} |
- virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE { |
+ virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) override { |
// Make sure this is a JSON string. |
if (!len || data[0] != '{') |
return NULL; |