Export symbols needed by the Chromium component build (part 2).
This CL uses RTC_EXPORT (defined in rtc_base/system/rtc_export.h) to mark WebRTC symbols as visible from a shared library, this doesn't mean these symbols are part of the public API (please continue to refer to [1] for info about what is considered public WebRTC API). Bug: webrtc:9419 Change-Id: I6f27003001548ea9d54412fdf62d5dd7a39cfd46 Reviewed-on: https://webrtc-review.googlesource.com/c/106022 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25187}
This commit is contained in:
committed by
Commit Bot
parent
d4d5f8a0ec
commit
3b56ee73a3
@ -20,12 +20,13 @@
|
||||
#include "rtc_base/refcount.h"
|
||||
#include "rtc_base/refcountedobject.h"
|
||||
#include "rtc_base/scoped_ref_ptr.h"
|
||||
#include "rtc_base/system/rtc_export.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
// A collection of stats.
|
||||
// This is accessible as a map from |RTCStats::id| to |RTCStats|.
|
||||
class RTCStatsReport : public rtc::RefCountInterface {
|
||||
class RTC_EXPORT RTCStatsReport : public rtc::RefCountInterface {
|
||||
public:
|
||||
typedef std::map<std::string, std::unique_ptr<const RTCStats>> StatsMap;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user