Use proper export macro in rtc_stats.cc

R=hbos@webrtc.org

Bug: webrtc:14546
Change-Id: Ida2de79255ab22b6d779c49dc0a0ba7f17b679c5
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/279920
Commit-Queue: Evan Shrubsole <eshr@webrtc.org>
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Reviewed-by: Henrik Boström <hbos@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38448}
This commit is contained in:
Evan Shrubsole 2022-10-20 11:48:59 +00:00 committed by WebRTC LUCI CQ
parent 6bf20cc76a
commit 640e92684a

View File

@ -295,50 +295,50 @@ WEBRTC_DEFINE_RTCSTATSMEMBER(rtc_stats_internal::MapStringDouble,
MapToStringAsDouble(*value_));
// Restricted members that expose hardware capabilites.
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<bool, StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<int32_t,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<uint32_t,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<int64_t,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<uint64_t,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<double, StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::string,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<bool>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<int32_t>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<uint32_t>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<int64_t>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<uint64_t>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<double>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::vector<std::string>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::map<std::string, uint64_t>,
StatExposureCriteria::kHardwareCapability>;
template class RTC_EXPORT_TEMPLATE_DECLARE(RTC_EXPORT)
template class RTC_EXPORT_TEMPLATE_DEFINE(RTC_EXPORT)
RTCRestrictedStatsMember<std::map<std::string, double>,
StatExposureCriteria::kHardwareCapability>;