Delete classes EventFactory and EventFactoryImpl.
Followup to cl https://webrtc-review.googlesource.com/c/src/+/107890 Bug: webrtc:3380 Change-Id: Iac4389186be3ffbc55e53e18aa302465cd771da4 Reviewed-on: https://webrtc-review.googlesource.com/c/110140 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25559}
This commit is contained in:
@ -38,21 +38,6 @@ class VideoDecoder;
|
||||
class VideoEncoder;
|
||||
struct CodecSpecificInfo;
|
||||
|
||||
// DEPRECATED
|
||||
class EventFactory {
|
||||
public:
|
||||
virtual ~EventFactory() {}
|
||||
|
||||
virtual EventWrapper* CreateEvent() = 0;
|
||||
};
|
||||
|
||||
class RTC_DEPRECATED EventFactoryImpl : public EventFactory {
|
||||
public:
|
||||
~EventFactoryImpl() override {}
|
||||
|
||||
EventWrapper* CreateEvent() override;
|
||||
};
|
||||
|
||||
// Used to indicate which decode with errors mode should be used.
|
||||
enum VCMDecodeErrorMode {
|
||||
kNoErrors, // Never decode with errors. Video will freeze
|
||||
@ -70,11 +55,6 @@ class VideoCodingModule : public Module {
|
||||
public:
|
||||
enum SenderNackMode { kNackNone, kNackAll, kNackSelective };
|
||||
|
||||
RTC_DEPRECATED
|
||||
static VideoCodingModule* Create(Clock* clock,
|
||||
EventFactory* /* event_factory*/) {
|
||||
return Create(clock);
|
||||
}
|
||||
// DEPRECATED.
|
||||
static VideoCodingModule* Create(Clock* clock);
|
||||
|
||||
|
Reference in New Issue
Block a user