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:
@ -27,10 +27,6 @@
|
||||
#include "system_wrappers/include/clock.h"
|
||||
|
||||
namespace webrtc {
|
||||
EventWrapper* EventFactoryImpl::CreateEvent() {
|
||||
return EventWrapper::Create();
|
||||
}
|
||||
|
||||
namespace vcm {
|
||||
|
||||
int64_t VCMProcessTimer::Period() const {
|
||||
@ -81,7 +77,6 @@ class EncodedImageCallbackWrapper : public EncodedImageCallback {
|
||||
class VideoCodingModuleImpl : public VideoCodingModule {
|
||||
public:
|
||||
VideoCodingModuleImpl(Clock* clock,
|
||||
EventFactory* /* event_factory */,
|
||||
NackSender* nack_sender,
|
||||
KeyFrameRequestSender* keyframe_request_sender)
|
||||
: VideoCodingModule(),
|
||||
@ -219,7 +214,7 @@ class VideoCodingModuleImpl : public VideoCodingModule {
|
||||
// new jitter buffer is in place.
|
||||
VideoCodingModule* VideoCodingModule::Create(Clock* clock) {
|
||||
RTC_DCHECK(clock);
|
||||
return new VideoCodingModuleImpl(clock, nullptr, nullptr, nullptr);
|
||||
return new VideoCodingModuleImpl(clock, nullptr, nullptr);
|
||||
}
|
||||
|
||||
} // namespace webrtc
|
||||
|
Reference in New Issue
Block a user