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

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

Issue 663333002: Standardize usage of virtual/override/final in chrome/renderer/ (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
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 be4cbb6a0d9be8b14b458d94db1ff8517587e54c..b8c199a92c523b8553e09c3c2c2605198edc14bb 100644
--- a/chrome/renderer/media/cast_transport_sender_ipc.h
+++ b/chrome/renderer/media/cast_transport_sender_ipc.h
@@ -26,27 +26,25 @@ class CastTransportSenderIPC
const media::cast::CastTransportStatusCallback& status_cb,
const media::cast::BulkRawEventsCallback& raw_events_cb);
- virtual ~CastTransportSenderIPC();
+ ~CastTransportSenderIPC() override;
// media::cast::CastTransportSender implementation.
- virtual void InitializeAudio(
+ void InitializeAudio(
const media::cast::CastTransportRtpConfig& config,
const media::cast::RtcpCastMessageCallback& cast_message_cb,
const media::cast::RtcpRttCallback& rtt_cb) override;
- virtual void InitializeVideo(
+ void InitializeVideo(
const media::cast::CastTransportRtpConfig& config,
const media::cast::RtcpCastMessageCallback& cast_message_cb,
const media::cast::RtcpRttCallback& rtt_cb) override;
- virtual void InsertFrame(uint32 ssrc,
- const media::cast::EncodedFrame& frame) override;
- virtual void SendSenderReport(
- uint32 ssrc,
- base::TimeTicks current_time,
- 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;
+ void InsertFrame(uint32 ssrc,
+ const media::cast::EncodedFrame& frame) override;
+ void SendSenderReport(uint32 ssrc,
+ base::TimeTicks current_time,
+ uint32 current_time_as_rtp_timestamp) override;
+ void CancelSendingFrames(uint32 ssrc,
+ const std::vector<uint32>& frame_ids) override;
+ 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