Replace NULL with nullptr in webrtc/video.
BUG= R=danilchap@webrtc.org Review URL: https://codereview.webrtc.org/1855433002 . Cr-Commit-Position: refs/heads/master@{#12218}
This commit is contained in:
@ -1528,7 +1528,7 @@ TEST_F(EndToEndTest, AssignsTransportSequenceNumbers) {
|
||||
|
||||
protected:
|
||||
void Wait() override {
|
||||
RTC_DCHECK(observer_ != nullptr);
|
||||
RTC_DCHECK(observer_);
|
||||
EXPECT_TRUE(observer_->Wait());
|
||||
}
|
||||
|
||||
@ -2670,7 +2670,7 @@ TEST_F(EndToEndTest, GetStats) {
|
||||
}
|
||||
|
||||
bool CheckSendStats() {
|
||||
RTC_DCHECK(send_stream_ != nullptr);
|
||||
RTC_DCHECK(send_stream_);
|
||||
VideoSendStream::Stats stats = send_stream_->GetStats();
|
||||
|
||||
send_stats_filled_["NumStreams"] |=
|
||||
|
||||
Reference in New Issue
Block a user