| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include <stdio.h> | 11 #include <stdio.h> |
| 12 | 12 |
| 13 #include <algorithm> | 13 #include <algorithm> |
| 14 | 14 |
| 15 #include "webrtc/api/statscollector.h" | 15 #include "webrtc/api/statscollector.h" |
| 16 | 16 |
| 17 #include "talk/session/media/channelmanager.h" | |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #include "webrtc/api/mediastream.h" | 19 #include "webrtc/api/mediastream.h" |
| 21 #include "webrtc/api/mediastreaminterface.h" | 20 #include "webrtc/api/mediastreaminterface.h" |
| 22 #include "webrtc/api/mediastreamtrack.h" | 21 #include "webrtc/api/mediastreamtrack.h" |
| 23 #include "webrtc/api/peerconnection.h" | 22 #include "webrtc/api/peerconnection.h" |
| 24 #include "webrtc/api/peerconnectionfactory.h" | 23 #include "webrtc/api/peerconnectionfactory.h" |
| 25 #include "webrtc/api/test/fakedatachannelprovider.h" | 24 #include "webrtc/api/test/fakedatachannelprovider.h" |
| 26 #include "webrtc/api/videotrack.h" | 25 #include "webrtc/api/videotrack.h" |
| 27 #include "webrtc/base/base64.h" | 26 #include "webrtc/base/base64.h" |
| 28 #include "webrtc/base/fakesslidentity.h" | 27 #include "webrtc/base/fakesslidentity.h" |
| 29 #include "webrtc/base/gunit.h" | 28 #include "webrtc/base/gunit.h" |
| 30 #include "webrtc/base/network.h" | 29 #include "webrtc/base/network.h" |
| 31 #include "webrtc/media/base/fakemediaengine.h" | 30 #include "webrtc/media/base/fakemediaengine.h" |
| 32 #include "webrtc/p2p/base/faketransportcontroller.h" | 31 #include "webrtc/p2p/base/faketransportcontroller.h" |
| 32 #include "webrtc/pc/channelmanager.h" |
| 33 | 33 |
| 34 using rtc::scoped_ptr; | 34 using rtc::scoped_ptr; |
| 35 using testing::_; | 35 using testing::_; |
| 36 using testing::DoAll; | 36 using testing::DoAll; |
| 37 using testing::Field; | 37 using testing::Field; |
| 38 using testing::Return; | 38 using testing::Return; |
| 39 using testing::ReturnNull; | 39 using testing::ReturnNull; |
| 40 using testing::ReturnRef; | 40 using testing::ReturnRef; |
| 41 using testing::SetArgPointee; | 41 using testing::SetArgPointee; |
| 42 using webrtc::PeerConnectionInterface; | 42 using webrtc::PeerConnectionInterface; |
| (...skipping 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 cricket::VoiceSenderInfo new_voice_sender_info; | 1730 cricket::VoiceSenderInfo new_voice_sender_info; |
| 1731 InitVoiceSenderInfo(&new_voice_sender_info); | 1731 InitVoiceSenderInfo(&new_voice_sender_info); |
| 1732 cricket::VoiceMediaInfo new_stats_read; | 1732 cricket::VoiceMediaInfo new_stats_read; |
| 1733 reports.clear(); | 1733 reports.clear(); |
| 1734 SetupAndVerifyAudioTrackStats( | 1734 SetupAndVerifyAudioTrackStats( |
| 1735 new_audio_track.get(), stream_.get(), &stats, &voice_channel, kVcName, | 1735 new_audio_track.get(), stream_.get(), &stats, &voice_channel, kVcName, |
| 1736 media_channel, &new_voice_sender_info, NULL, &new_stats_read, &reports); | 1736 media_channel, &new_voice_sender_info, NULL, &new_stats_read, &reports); |
| 1737 } | 1737 } |
| 1738 | 1738 |
| 1739 } // namespace webrtc | 1739 } // namespace webrtc |
| OLD | NEW |