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

Unified Diff: media/cast/sender/fake_software_video_encoder.h

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/sender/external_video_encoder.cc ('k') | media/cast/sender/video_encoder_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/fake_software_video_encoder.h
diff --git a/media/cast/sender/fake_software_video_encoder.h b/media/cast/sender/fake_software_video_encoder.h
index 5491ae0cc8ea969b6bdf9e63c07d876bb127b1be..26d34aac5311b9c1475d02dc48e7c48ccb0f2512 100644
--- a/media/cast/sender/fake_software_video_encoder.h
+++ b/media/cast/sender/fake_software_video_encoder.h
@@ -17,12 +17,12 @@ class FakeSoftwareVideoEncoder : public SoftwareVideoEncoder {
virtual ~FakeSoftwareVideoEncoder();
// SoftwareVideoEncoder implementations.
- virtual void Initialize() OVERRIDE;
+ virtual void Initialize() override;
virtual bool Encode(const scoped_refptr<media::VideoFrame>& video_frame,
- EncodedFrame* encoded_image) OVERRIDE;
- virtual void UpdateRates(uint32 new_bitrate) OVERRIDE;
- virtual void GenerateKeyFrame() OVERRIDE;
- virtual void LatestFrameIdToReference(uint32 frame_id) OVERRIDE;
+ EncodedFrame* encoded_image) override;
+ virtual void UpdateRates(uint32 new_bitrate) override;
+ virtual void GenerateKeyFrame() override;
+ virtual void LatestFrameIdToReference(uint32 frame_id) override;
private:
VideoSenderConfig video_config_;
« no previous file with comments | « media/cast/sender/external_video_encoder.cc ('k') | media/cast/sender/video_encoder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698