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

Unified Diff: media/cast/receiver/cast_receiver_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/cast/receiver/audio_decoder.cc ('k') | media/cast/receiver/frame_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/receiver/cast_receiver_impl.h
diff --git a/media/cast/receiver/cast_receiver_impl.h b/media/cast/receiver/cast_receiver_impl.h
index 23e6a9ca0eb9e88ff0a9ea3b09a406802a45dccd..5431393d73d53c8ebb8b3255b1b7f6feb488997e 100644
--- a/media/cast/receiver/cast_receiver_impl.h
+++ b/media/cast/receiver/cast_receiver_impl.h
@@ -29,17 +29,17 @@ class CastReceiverImpl : public CastReceiver {
const FrameReceiverConfig& video_config,
PacketSender* const packet_sender);
- virtual ~CastReceiverImpl();
+ ~CastReceiverImpl() override;
// CastReceiver implementation.
- virtual PacketReceiverCallback packet_receiver() override;
- virtual void RequestDecodedAudioFrame(
+ PacketReceiverCallback packet_receiver() override;
+ void RequestDecodedAudioFrame(
const AudioFrameDecodedCallback& callback) override;
- virtual void RequestEncodedAudioFrame(
+ void RequestEncodedAudioFrame(
const ReceiveEncodedFrameCallback& callback) override;
- virtual void RequestDecodedVideoFrame(
+ void RequestDecodedVideoFrame(
const VideoFrameDecodedCallback& callback) override;
- virtual void RequestEncodedVideoFrame(
+ void RequestEncodedVideoFrame(
const ReceiveEncodedFrameCallback& callback) override;
private:
« no previous file with comments | « media/cast/receiver/audio_decoder.cc ('k') | media/cast/receiver/frame_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698