Previously the helper methods (like "CreateLocalAudioTrack") were using hard-coded IDs. This means if you try to add two tracks to the same PeerConnection you'll get an ID conflict. Tests were getting around this by using APIs to explicitly add tracks with different IDs. But this leaks an implementation detail of the helper methods, and is a hassle. So instead, just use random UUIDs from the helper methods. This is how IDs are created in the real world, so it's pretty reasonable and allows the tests to be made more readable. BUG=None Review-Url: https://codereview.webrtc.org/3011713002 Cr-Commit-Position: refs/heads/master@{#19736}
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.