Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/
Dstatstypes.cc81 class BandwidthEstimationId : public StatsReport::IdBase {
84 : StatsReport::IdBase(StatsReport::kStatsReportTypeBwe) {} in BandwidthEstimationId()
88 class TypedId : public StatsReport::IdBase {
91 : StatsReport::IdBase(type), id_(id) {} in TypedId()
93 bool Equals(const IdBase& other) const override { in Equals()
94 return IdBase::Equals(other) && in Equals()
106 class TypedIntId : public StatsReport::IdBase {
109 : StatsReport::IdBase(type), id_(id) {} in TypedIntId()
111 bool Equals(const IdBase& other) const override { in Equals()
112 return IdBase::Equals(other) && in Equals()
[all …]
Dstatstypes.h226 class IdBase : public rtc::RefCountInterface {
228 ~IdBase() override;
234 bool Equals(const rtc::scoped_refptr<IdBase>& other) const { in Equals()
242 virtual bool Equals(const IdBase& other) const;
244 IdBase(StatsType type); // Only meant for derived classes.
250 typedef rtc::scoped_refptr<IdBase> Id;