Add RTC_EXPORT for Voucher::ScopedSetter and Voucher::Attachment.

Bug: chromium:1498378
Change-Id: I606079411c71ac46cc5d261a86f6a11c473d1278
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/325960
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#41071}
This commit is contained in:
Markus Handell 2023-11-03 00:14:48 +01:00 committed by WebRTC LUCI CQ
parent c68da75d04
commit 414ffac4b7

View File

@ -32,7 +32,7 @@ class RTC_EXPORT Voucher {
// Vouchers aggregate attachments, which are application-specific attachments
// that have logic unrelated to the mechanics of Voucher progression.
class Attachment {
class RTC_EXPORT Attachment {
public:
using Id = size_t;
@ -45,7 +45,7 @@ class RTC_EXPORT Voucher {
// Scoped setter that saves the current voucher on stack and instates a new
// one, until the scope exits.
class ScopedSetter {
class RTC_EXPORT ScopedSetter {
public:
explicit ScopedSetter(Ptr voucher);
~ScopedSetter();