A handful of helpers were using SessionDescriptionInterface** output arguments to return ownership. Chenge them to either use a rtc::scoped_ptr<SessionDescriptionInterface>* output parameter, or to simply return a rtc::scoped_ptr<SessionDescriptionInterface>. Not using raw pointers for things you own is good in general; it will also be very convenient when scoped_ptr is gone, since unique_ptr doesn't have .accept() or .use() methods. BUG=webrtc:5520 Review URL: https://codereview.webrtc.org/1798173002 Cr-Commit-Position: refs/heads/master@{#12021}
Name: WebRTC URL: http://www.webrtc.org Version: 90 License: BSD License File: LICENSE Description: WebRTC provides real time voice and video processing functionality to enable the implementation of PeerConnection/MediaStream. Third party code used in this project is described in the file LICENSE_THIRD_PARTY.