From dd45ab650e88b7335adaa9b3e97414f566ba272a Mon Sep 17 00:00:00 2001 From: Markus Handell Date: Fri, 10 Nov 2023 18:16:45 +0000 Subject: [PATCH] Revert "Add RTC_EXPORT for Voucher::ScopedSetter and Voucher::Attachment." This reverts commit 414ffac4b742dc3a1696deb3117ef1383fc8d9be. Reason for revert: remove functionality after measurement complete Original change's description: > 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 > Commit-Queue: Mirko Bonadei > Cr-Commit-Position: refs/heads/main@{#41071} Bug: chromium:1498378 Change-Id: If35641719a8bf01b045e10c707af809250665330 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/327022 Reviewed-by: Mirko Bonadei Bot-Commit: rubber-stamper@appspot.gserviceaccount.com Commit-Queue: Mirko Bonadei Reviewed-by: Harald Alvestrand Cr-Commit-Position: refs/heads/main@{#41130} --- rtc_base/voucher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtc_base/voucher.h b/rtc_base/voucher.h index 1a82551b74..30a6460906 100644 --- a/rtc_base/voucher.h +++ b/rtc_base/voucher.h @@ -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 RTC_EXPORT Attachment { + class 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 RTC_EXPORT ScopedSetter { + class ScopedSetter { public: explicit ScopedSetter(Ptr voucher); ~ScopedSetter();