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

Unified Diff: chrome/renderer/media/cast_transport_sender_ipc.h

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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
Index: chrome/renderer/media/cast_transport_sender_ipc.h
diff --git a/chrome/renderer/media/cast_transport_sender_ipc.h b/chrome/renderer/media/cast_transport_sender_ipc.h
index 9e5ad26c272b658f5383b8d3a13dca87b62b75fe..be4cbb6a0d9be8b14b458d94db1ff8517587e54c 100644
--- a/chrome/renderer/media/cast_transport_sender_ipc.h
+++ b/chrome/renderer/media/cast_transport_sender_ipc.h
@@ -32,21 +32,21 @@ class CastTransportSenderIPC
virtual void InitializeAudio(
const media::cast::CastTransportRtpConfig& config,
const media::cast::RtcpCastMessageCallback& cast_message_cb,
- const media::cast::RtcpRttCallback& rtt_cb) OVERRIDE;
+ const media::cast::RtcpRttCallback& rtt_cb) override;
virtual void InitializeVideo(
const media::cast::CastTransportRtpConfig& config,
const media::cast::RtcpCastMessageCallback& cast_message_cb,
- const media::cast::RtcpRttCallback& rtt_cb) OVERRIDE;
+ const media::cast::RtcpRttCallback& rtt_cb) override;
virtual void InsertFrame(uint32 ssrc,
- const media::cast::EncodedFrame& frame) OVERRIDE;
+ const media::cast::EncodedFrame& frame) override;
virtual void SendSenderReport(
uint32 ssrc,
base::TimeTicks current_time,
- uint32 current_time_as_rtp_timestamp) OVERRIDE;
+ uint32 current_time_as_rtp_timestamp) override;
virtual void CancelSendingFrames(
uint32 ssrc,
- const std::vector<uint32>& frame_ids) OVERRIDE;
- virtual void ResendFrameForKickstart(uint32 ssrc, uint32 frame_id) OVERRIDE;
+ const std::vector<uint32>& frame_ids) override;
+ virtual void ResendFrameForKickstart(uint32 ssrc, uint32 frame_id) override;
void OnNotifyStatusChange(
media::cast::CastTransportStatus status);
« no previous file with comments | « chrome/renderer/media/cast_rtp_stream.cc ('k') | chrome/renderer/media/chrome_webrtc_log_message_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698