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

Unified Diff: content/renderer/media/rtc_video_decoder_factory.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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 | « content/renderer/media/rtc_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/rtc_video_decoder_factory.h
diff --git a/content/renderer/media/rtc_video_decoder_factory.h b/content/renderer/media/rtc_video_decoder_factory.h
index d40203f002d7feefa4bd85c47501aecff7cd0beb..860a4bd3db2abc472a5a403f85866efcec331e3e 100644
--- a/content/renderer/media/rtc_video_decoder_factory.h
+++ b/content/renderer/media/rtc_video_decoder_factory.h
@@ -32,11 +32,11 @@ class CONTENT_EXPORT RTCVideoDecoderFactory
// Runs on Chrome_libJingle_WorkerThread. The child thread is blocked while
// this runs.
virtual webrtc::VideoDecoder* CreateVideoDecoder(webrtc::VideoCodecType type)
- OVERRIDE;
+ override;
// Runs on Chrome_libJingle_WorkerThread. The child thread is blocked while
// this runs.
- virtual void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) OVERRIDE;
+ virtual void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) override;
private:
scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories_;
« no previous file with comments | « content/renderer/media/rtc_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698