Remove RTC_DISALLOW_COPY_AND_ASSIGN from modules/
Bug: webrtc:13555, webrtc:13082 Change-Id: I2c2cbcbd918f0cfa970c1a964893220ba11d4b41 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/247960 Reviewed-by: Artem Titov <titovartem@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: (Daniel.L) Byoungchan Lee <daniel.l@hpcnt.com> Cr-Commit-Position: refs/heads/main@{#35771}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
ce6170fcdf
commit
604fd2f1ab
@ -19,7 +19,6 @@
|
||||
#include "api/units/data_size.h"
|
||||
#include "api/units/time_delta.h"
|
||||
#include "modules/pacing/paced_sender.h"
|
||||
#include "rtc_base/constructor_magic.h"
|
||||
#include "rtc_base/system/no_unique_address.h"
|
||||
|
||||
namespace webrtc {
|
||||
@ -33,6 +32,9 @@ class CongestionControlHandler {
|
||||
CongestionControlHandler();
|
||||
~CongestionControlHandler();
|
||||
|
||||
CongestionControlHandler(const CongestionControlHandler&) = delete;
|
||||
CongestionControlHandler& operator=(const CongestionControlHandler&) = delete;
|
||||
|
||||
void SetTargetRate(TargetTransferRate new_target_rate);
|
||||
void SetNetworkAvailability(bool network_available);
|
||||
void SetPacerQueue(TimeDelta expected_queue_time);
|
||||
@ -48,7 +50,6 @@ class CongestionControlHandler {
|
||||
int64_t pacer_expected_queue_ms_ = 0;
|
||||
|
||||
RTC_NO_UNIQUE_ADDRESS SequenceChecker sequenced_checker_;
|
||||
RTC_DISALLOW_COPY_AND_ASSIGN(CongestionControlHandler);
|
||||
};
|
||||
} // namespace webrtc
|
||||
#endif // MODULES_CONGESTION_CONTROLLER_RTP_CONTROL_HANDLER_H_
|
||||
|
||||
Reference in New Issue
Block a user