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

Unified Diff: media/cast/sender/congestion_control.cc

Issue 638093004: change newly added OVERRIDE to override 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/congestion_control.cc
diff --git a/media/cast/sender/congestion_control.cc b/media/cast/sender/congestion_control.cc
index 2ce621a99685cbc8ef0b501c8881d6d2dd3309d1..a3ebcf186017f63a91761697aad55adef453cf12 100644
--- a/media/cast/sender/congestion_control.cc
+++ b/media/cast/sender/congestion_control.cc
@@ -33,7 +33,7 @@ class AdaptiveCongestionControl : public CongestionControl {
virtual void UpdateRtt(base::TimeDelta rtt) override;
- virtual void UpdateTargetPlayoutDelay(base::TimeDelta delay) OVERRIDE;
+ virtual void UpdateTargetPlayoutDelay(base::TimeDelta delay) override;
// Called when an encoded frame is sent to the transport.
virtual void SendFrameToTransport(uint32 frame_id,
@@ -101,7 +101,7 @@ class FixedCongestionControl : public CongestionControl {
virtual void UpdateRtt(base::TimeDelta rtt) override {
}
- virtual void UpdateTargetPlayoutDelay(base::TimeDelta delay) OVERRIDE {
+ virtual void UpdateTargetPlayoutDelay(base::TimeDelta delay) override {
}
// Called when an encoded frame is sent to the transport.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698