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

Unified Diff: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc

Issue 2710093004: Rename webrtc::PacketInfo to webrtc::PacketFeedback (Closed)
Patch Set: . Created 3 years, 10 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: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
index 5e7560a7797def79d1d2026acd971a1487e748e6..e9c84c0b151908c5a608595dd4dd4d4e6efdaf5c 100644
--- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
+++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
@@ -46,10 +46,10 @@ RemoteEstimatorProxy::RemoteEstimatorProxy(Clock* clock,
RemoteEstimatorProxy::~RemoteEstimatorProxy() {}
void RemoteEstimatorProxy::IncomingPacketFeedbackVector(
- const std::vector<PacketInfo>& packet_feedback_vector) {
+ const std::vector<PacketFeedback>& packet_feedback_vector) {
rtc::CritScope cs(&lock_);
- for (PacketInfo info : packet_feedback_vector)
- OnPacketArrival(info.sequence_number, info.arrival_time_ms);
+ for (PacketFeedback packet : packet_feedback_vector)
+ OnPacketArrival(packet.sequence_number, packet.arrival_time_ms);
}
void RemoteEstimatorProxy::IncomingPacket(int64_t arrival_time_ms,

Powered by Google App Engine
This is Rietveld 408576698