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

Unified Diff: webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h

Issue 2710093004: Rename webrtc::PacketInfo to webrtc::PacketFeedback (Closed)
Patch Set: Rebased Created 3 years, 9 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/congestion_controller/delay_based_bwe_unittest_helper.h
diff --git a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h
index 5833a69144edbd79ce02827a5d17b1490574799d..089391f5324f57512ee4597ae9190e3ef37a4514 100644
--- a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h
+++ b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h
@@ -54,7 +54,8 @@ class RtpStream {
// Generates a new frame for this stream. If called too soon after the
// previous frame, no frame will be generated. The frame is split into
// packets.
- int64_t GenerateFrame(int64_t time_now_us, std::vector<PacketInfo>* packets);
+ int64_t GenerateFrame(int64_t time_now_us,
+ std::vector<PacketFeedback>* packets);
// The send-side time when the next frame can be generated.
int64_t next_rtp_time() const;
@@ -94,7 +95,8 @@ class StreamGenerator {
// TODO(holmer): Break out the channel simulation part from this class to make
// it possible to simulate different types of channels.
- int64_t GenerateFrame(std::vector<PacketInfo>* packets, int64_t time_now_us);
+ int64_t GenerateFrame(std::vector<PacketFeedback>* packets,
+ int64_t time_now_us);
private:
// Capacity of the simulated channel in bits per second.

Powered by Google App Engine
This is Rietveld 408576698