diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 05:23:27 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 12:24:04 +0000 |
commit | c24565478f64d1aa4d07e83c69d00bad11fa2665 (patch) | |
tree | ec3572cc086984ca8dcdb2c2740c1b8e163dd0b0 /media/cast/cast_sender_impl.h | |
parent | 3fc12db4bdf0829f206dafbb23d411ff502d7de6 (diff) | |
download | chromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.zip chromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.tar.gz chromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.tar.bz2 |
Standardize usage of virtual/override/final in media/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=ddorwin@chromium.org
Review URL: https://codereview.chromium.org/655713003
Cr-Commit-Position: refs/heads/master@{#300471}
Diffstat (limited to 'media/cast/cast_sender_impl.h')
-rw-r--r-- | media/cast/cast_sender_impl.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/media/cast/cast_sender_impl.h b/media/cast/cast_sender_impl.h index 4abbf8e..b76603e 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); |