mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 08:37:54 +01:00

This is essentially replacing `new rtc::RefCountedObject` with `rtc::make_ref_counted` in many files. In a couple of places I made minor tweaks to make things compile such as adding parenthesis when they were missing. Bug: webrtc:12701 Change-Id: I3828dbf3ee0eb0232f3a47067474484ac2f4aed2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/215973 Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Commit-Queue: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33852}
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "test/pc/e2e/stats_poller.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace webrtc {
|
|
namespace webrtc_pc_e2e {
|
|
|
|
void InternalStatsObserver::PollStats() {
|
|
peer_->pc()->GetStats(this);
|
|
}
|
|
|
|
void InternalStatsObserver::OnStatsDelivered(
|
|
const rtc::scoped_refptr<const RTCStatsReport>& report) {
|
|
for (auto* observer : observers_) {
|
|
observer->OnStatsReports(pc_label_, report);
|
|
}
|
|
}
|
|
|
|
StatsPoller::StatsPoller(std::vector<StatsObserverInterface*> observers,
|
|
std::map<std::string, TestPeer*> peers) {
|
|
for (auto& peer : peers) {
|
|
pollers_.push_back(rtc::make_ref_counted<InternalStatsObserver>(
|
|
peer.first, peer.second, observers));
|
|
}
|
|
}
|
|
|
|
void StatsPoller::PollStatsAndNotifyObservers() {
|
|
for (auto& poller : pollers_) {
|
|
poller->PollStats();
|
|
}
|
|
}
|
|
|
|
} // namespace webrtc_pc_e2e
|
|
} // namespace webrtc
|