Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Unified Diff: media/cast/receiver/video_decoder.cc

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/receiver/frame_receiver.h ('k') | media/cast/receiver/video_decoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « media/cast/receiver/frame_receiver.h ('k') | media/cast/receiver/video_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698