Home
last modified time | relevance | path

Searched refs:IdBase (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/api/
Dstats_types.cc66 class BandwidthEstimationId : public StatsReport::IdBase {
69 : StatsReport::IdBase(StatsReport::kStatsReportTypeBwe) {} in BandwidthEstimationId()
73 class TypedId : public StatsReport::IdBase {
76 : StatsReport::IdBase(type), id_(id) {} in TypedId()
78 bool Equals(const IdBase& other) const override { in Equals()
79 return IdBase::Equals(other) && in Equals()
91 class TypedIntId : public StatsReport::IdBase {
94 : StatsReport::IdBase(type), id_(id) {} in TypedIntId()
96 bool Equals(const IdBase& other) const override { in Equals()
97 return IdBase::Equals(other) && in Equals()
[all …]
Dstats_types.h245 class RTC_EXPORT IdBase : public rtc::RefCountInterface {
247 ~IdBase() override;
253 bool Equals(const rtc::scoped_refptr<IdBase>& other) const { in Equals()
261 virtual bool Equals(const IdBase& other) const;
263 explicit IdBase(StatsType type); // Only meant for derived classes.
269 typedef rtc::scoped_refptr<IdBase> Id;