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

Unified Diff: media/cast/receiver/cast_receiver_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/cast/receiver/audio_decoder_unittest.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 3443561257616e170de203503dba27ff4f9ee315..23e6a9ca0eb9e88ff0a9ea3b09a406802a45dccd 100644
--- a/media/cast/receiver/cast_receiver_impl.h
+++ b/media/cast/receiver/cast_receiver_impl.h
@@ -32,15 +32,15 @@ class CastReceiverImpl : public CastReceiver {
virtual ~CastReceiverImpl();
// CastReceiver implementation.
- virtual PacketReceiverCallback packet_receiver() OVERRIDE;
+ virtual PacketReceiverCallback packet_receiver() override;
virtual void RequestDecodedAudioFrame(
- const AudioFrameDecodedCallback& callback) OVERRIDE;
+ const AudioFrameDecodedCallback& callback) override;
virtual void RequestEncodedAudioFrame(
- const ReceiveEncodedFrameCallback& callback) OVERRIDE;
+ const ReceiveEncodedFrameCallback& callback) override;
virtual void RequestDecodedVideoFrame(
- const VideoFrameDecodedCallback& callback) OVERRIDE;
+ const VideoFrameDecodedCallback& callback) override;
virtual void RequestEncodedVideoFrame(
- const ReceiveEncodedFrameCallback& callback) OVERRIDE;
+ const ReceiveEncodedFrameCallback& callback) override;
private:
// Forwards |packet| to a specific RTP frame receiver, or drops it if SSRC
« no previous file with comments | « media/cast/receiver/audio_decoder_unittest.cc ('k') | media/cast/receiver/frame_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698