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

Unified Diff: media/cast/cast_sender_impl.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/blink/webmediaplayer_impl.cc ('k') | media/cast/cast_sender_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_sender_impl.h
diff --git a/media/cast/cast_sender_impl.h b/media/cast/cast_sender_impl.h
index e3f16fea2f8a42f14f776b4c90c78d7dcd853f46..4abbf8e94bb8e6c79acd11be1d5e1952bf478d1a 100644
--- a/media/cast/cast_sender_impl.h
+++ b/media/cast/cast_sender_impl.h
@@ -29,21 +29,21 @@ class CastSenderImpl : public CastSender {
virtual void InitializeAudio(
const AudioSenderConfig& audio_config,
- const CastInitializationCallback& cast_initialization_cb) OVERRIDE;
+ const CastInitializationCallback& cast_initialization_cb) override;
virtual void InitializeVideo(
const VideoSenderConfig& video_config,
const CastInitializationCallback& cast_initialization_cb,
const CreateVideoEncodeAcceleratorCallback& create_vea_cb,
const CreateVideoEncodeMemoryCallback& create_video_encode_mem_cb)
- OVERRIDE;
+ override;
virtual void SetTargetPlayoutDelay(
- base::TimeDelta new_target_playout_delay) OVERRIDE;
+ base::TimeDelta new_target_playout_delay) override;
virtual ~CastSenderImpl();
- virtual scoped_refptr<AudioFrameInput> audio_frame_input() OVERRIDE;
- virtual scoped_refptr<VideoFrameInput> video_frame_input() OVERRIDE;
+ virtual scoped_refptr<AudioFrameInput> audio_frame_input() override;
+ virtual scoped_refptr<VideoFrameInput> video_frame_input() override;
private:
void ReceivedPacket(scoped_ptr<Packet> packet);
« no previous file with comments | « media/blink/webmediaplayer_impl.cc ('k') | media/cast/cast_sender_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698