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

Unified Diff: media/cast/test/cast_benchmarks.cc

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/sender/vp8_encoder.h ('k') | media/cast/test/end2end_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/cast_benchmarks.cc
diff --git a/media/cast/test/cast_benchmarks.cc b/media/cast/test/cast_benchmarks.cc
index 880f4ada8d92c05ce51b65f20654c0f6df0fad76..6e1f8f107f8c669f333e4c63ff5163c25d734568 100644
--- a/media/cast/test/cast_benchmarks.cc
+++ b/media/cast/test/cast_benchmarks.cc
@@ -111,7 +111,7 @@ class CastTransportSenderWrapper : public CastTransportSender {
virtual void InitializeAudio(
const CastTransportRtpConfig& config,
const RtcpCastMessageCallback& cast_message_cb,
- const RtcpRttCallback& rtt_cb) OVERRIDE {
+ const RtcpRttCallback& rtt_cb) override {
audio_ssrc_ = config.ssrc;
transport_->InitializeAudio(config, cast_message_cb, rtt_cb);
}
@@ -119,13 +119,13 @@ class CastTransportSenderWrapper : public CastTransportSender {
virtual void InitializeVideo(
const CastTransportRtpConfig& config,
const RtcpCastMessageCallback& cast_message_cb,
- const RtcpRttCallback& rtt_cb) OVERRIDE {
+ const RtcpRttCallback& rtt_cb) override {
video_ssrc_ = config.ssrc;
transport_->InitializeVideo(config, cast_message_cb, rtt_cb);
}
virtual void InsertFrame(uint32 ssrc,
- const EncodedFrame& frame) OVERRIDE {
+ const EncodedFrame& frame) override {
if (ssrc == audio_ssrc_) {
*encoded_audio_bytes_ += frame.data.size();
} else if (ssrc == video_ssrc_) {
@@ -137,7 +137,7 @@ class CastTransportSenderWrapper : public CastTransportSender {
virtual void SendSenderReport(
uint32 ssrc,
base::TimeTicks current_time,
- uint32 current_time_as_rtp_timestamp) OVERRIDE {
+ uint32 current_time_as_rtp_timestamp) override {
transport_->SendSenderReport(ssrc,
current_time,
current_time_as_rtp_timestamp);
@@ -145,16 +145,16 @@ class CastTransportSenderWrapper : public CastTransportSender {
virtual void CancelSendingFrames(
uint32 ssrc,
- const std::vector<uint32>& frame_ids) OVERRIDE {
+ const std::vector<uint32>& frame_ids) override {
transport_->CancelSendingFrames(ssrc, frame_ids);
}
virtual void ResendFrameForKickstart(uint32 ssrc,
- uint32 frame_id) OVERRIDE {
+ uint32 frame_id) override {
transport_->ResendFrameForKickstart(ssrc, frame_id);
}
- virtual PacketReceiverCallback PacketReceiverForTesting() OVERRIDE {
+ virtual PacketReceiverCallback PacketReceiverForTesting() override {
return transport_->PacketReceiverForTesting();
}
« no previous file with comments | « media/cast/sender/vp8_encoder.h ('k') | media/cast/test/end2end_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698