Remove stringstreams from p2p/

Bug: webrtc:8982
Change-Id: Ibb01bbb7e5f07d266ac7dff45932afe95abc761c
Reviewed-on: https://webrtc-review.googlesource.com/82801
Commit-Queue: Jonas Olsson <jonasolsson@webrtc.org>
Reviewed-by: Tommi <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23576}
This commit is contained in:
Jonas Olsson 2018-06-12 09:08:15 +02:00 committed by Commit Bot
parent 39da65b24d
commit dadaaee3e8
2 changed files with 0 additions and 24 deletions

View File

@ -8,8 +8,6 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include <sstream>
#include "p2p/base/packetlossestimator.h"
#include "rtc_base/checks.h"
@ -106,23 +104,4 @@ std::size_t PacketLossEstimator::tracked_packet_count_for_testing() const {
return tracked_packets_.size();
}
std::string PacketLossEstimator::TrackedPacketsStringForTesting(
std::size_t max) const {
std::ostringstream oss;
size_t count = 0;
for (const auto& p : tracked_packets_) {
const auto& id = p.first;
const auto& packet_info = p.second;
oss << "{ " << id << ", " << packet_info.sent_time << "}, ";
count += 1;
if (count == max) {
oss << "...";
break;
}
}
return oss.str();
}
} // namespace cricket

View File

@ -56,9 +56,6 @@ class PacketLossEstimator {
std::size_t tracked_packet_count_for_testing() const;
// Output tracked packet state as a string.
std::string TrackedPacketsStringForTesting(std::size_t max) const;
private:
struct PacketInfo {
int64_t sent_time;