Update pc/ to not use implicit T* --> scoped_refptr<T> conversion

Bug: webrtc:13464
Change-Id: I729ec2306ec0d6df2e546b5dbb530f57065d60da
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/244090
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35623}
This commit is contained in:
Niels Möller
2022-01-04 15:20:03 +01:00
committed by WebRTC LUCI CQ
parent de6e1b4ffd
commit e7cc8830ef
19 changed files with 106 additions and 83 deletions

View File

@ -2456,8 +2456,8 @@ TEST_F(PeerConnectionInterfaceTestPlanB, CloseAndTestMethods) {
CreateAnswerAsLocalDescription();
ASSERT_EQ(1u, pc_->local_streams()->count());
rtc::scoped_refptr<MediaStreamInterface> local_stream =
pc_->local_streams()->at(0);
rtc::scoped_refptr<MediaStreamInterface> local_stream(
pc_->local_streams()->at(0));
pc_->Close();