Add missing RTC_EXPORT for the component build.
Bug: webrtc:9419
Change-Id: I3225259fb4cc55e9820f590928795f4587f1e3cb
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153884
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29479}
diff --git a/api/call/call_factory_interface.h b/api/call/call_factory_interface.h
index c3d5b41..6051409 100644
--- a/api/call/call_factory_interface.h
+++ b/api/call/call_factory_interface.h
@@ -13,6 +13,8 @@
#include <memory>
+#include "rtc_base/system/rtc_export.h"
+
namespace webrtc {
// These classes are not part of the API, and are treated as opaque pointers.
@@ -29,7 +31,7 @@
virtual Call* CreateCall(const CallConfig& config) = 0;
};
-std::unique_ptr<CallFactoryInterface> CreateCallFactory();
+RTC_EXPORT std::unique_ptr<CallFactoryInterface> CreateCallFactory();
} // namespace webrtc