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

Unified Diff: media/cast/sender/vp8_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/video_sender_unittest.cc ('k') | media/cast/test/cast_benchmarks.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/vp8_encoder.h
diff --git a/media/cast/sender/vp8_encoder.h b/media/cast/sender/vp8_encoder.h
index abe5eebb88320b9cb0eb8d28acc9a6df768fa962..034270391e09f6daf259998156f568cdc32fe33f 100644
--- a/media/cast/sender/vp8_encoder.h
+++ b/media/cast/sender/vp8_encoder.h
@@ -33,19 +33,19 @@ class Vp8Encoder : public SoftwareVideoEncoder {
// Initialize the encoder before Encode() can be called. This method
// must be called on the thread that Encode() is called.
- virtual void Initialize() OVERRIDE;
+ virtual void Initialize() override;
// Encode a raw image (as a part of a video stream).
virtual bool Encode(const scoped_refptr<media::VideoFrame>& video_frame,
- EncodedFrame* encoded_image) OVERRIDE;
+ EncodedFrame* encoded_image) override;
// Update the encoder with a new target bit rate.
- virtual void UpdateRates(uint32 new_bitrate) OVERRIDE;
+ virtual void UpdateRates(uint32 new_bitrate) override;
// Set the next frame to be a key frame.
- virtual void GenerateKeyFrame() OVERRIDE;
+ virtual void GenerateKeyFrame() override;
- virtual void LatestFrameIdToReference(uint32 frame_id) OVERRIDE;
+ virtual void LatestFrameIdToReference(uint32 frame_id) override;
private:
enum Vp8Buffers {
« no previous file with comments | « media/cast/sender/video_sender_unittest.cc ('k') | media/cast/test/cast_benchmarks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698