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

Unified Diff: media/cast/cast_sender_impl.h

Issue 655713003: Standardize usage of virtual/override/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 4abbf8e94bb8e6c79acd11be1d5e1952bf478d1a..b76603e498beff017f8b00df6ef71dfc746b4e62 100644
--- a/media/cast/cast_sender_impl.h
+++ b/media/cast/cast_sender_impl.h
@@ -27,23 +27,22 @@ class CastSenderImpl : public CastSender {
CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment,
CastTransportSender* const transport_sender);
- virtual void InitializeAudio(
+ void InitializeAudio(
const AudioSenderConfig& audio_config,
const CastInitializationCallback& cast_initialization_cb) override;
- virtual void InitializeVideo(
+ void InitializeVideo(
const VideoSenderConfig& video_config,
const CastInitializationCallback& cast_initialization_cb,
const CreateVideoEncodeAcceleratorCallback& create_vea_cb,
const CreateVideoEncodeMemoryCallback& create_video_encode_mem_cb)
override;
- virtual void SetTargetPlayoutDelay(
- base::TimeDelta new_target_playout_delay) override;
+ void SetTargetPlayoutDelay(base::TimeDelta new_target_playout_delay) override;
- virtual ~CastSenderImpl();
+ ~CastSenderImpl() override;
- virtual scoped_refptr<AudioFrameInput> audio_frame_input() override;
- virtual scoped_refptr<VideoFrameInput> video_frame_input() override;
+ scoped_refptr<AudioFrameInput> audio_frame_input() override;
+ 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