Migrate CallSimulator to the new perf metrics logging API
Bug: b/246095034 Change-Id: I613f702d2f469b6bc8d1634f8dda40d444ff7cf2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/276632 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Per Åhgren <peah@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/main@{#38213}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
e2f2cae3fb
commit
7fee2f7908
@ -19,6 +19,10 @@
|
||||
namespace webrtc {
|
||||
|
||||
SamplesStatsCounter::SamplesStatsCounter() = default;
|
||||
SamplesStatsCounter::SamplesStatsCounter(size_t expected_samples_count) {
|
||||
samples_.reserve(expected_samples_count);
|
||||
}
|
||||
|
||||
SamplesStatsCounter::~SamplesStatsCounter() = default;
|
||||
SamplesStatsCounter::SamplesStatsCounter(const SamplesStatsCounter&) = default;
|
||||
SamplesStatsCounter& SamplesStatsCounter::operator=(
|
||||
|
||||
@ -34,6 +34,7 @@ class SamplesStatsCounter {
|
||||
};
|
||||
|
||||
SamplesStatsCounter();
|
||||
explicit SamplesStatsCounter(size_t expected_samples_count);
|
||||
~SamplesStatsCounter();
|
||||
SamplesStatsCounter(const SamplesStatsCounter&);
|
||||
SamplesStatsCounter& operator=(const SamplesStatsCounter&);
|
||||
|
||||
Reference in New Issue
Block a user