| 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" | 17 #include "webrtc/pc/channelmanager.h" |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #include "webrtc/api/mediastream.h" | 20 #include "webrtc/api/mediastream.h" |
| 21 #include "webrtc/api/mediastreaminterface.h" | 21 #include "webrtc/api/mediastreaminterface.h" |
| 22 #include "webrtc/api/mediastreamtrack.h" | 22 #include "webrtc/api/mediastreamtrack.h" |
| 23 #include "webrtc/api/peerconnection.h" | 23 #include "webrtc/api/peerconnection.h" |
| 24 #include "webrtc/api/peerconnectionfactory.h" | 24 #include "webrtc/api/peerconnectionfactory.h" |
| 25 #include "webrtc/api/test/fakedatachannelprovider.h" | 25 #include "webrtc/api/test/fakedatachannelprovider.h" |
| 26 #include "webrtc/api/videotrack.h" | 26 #include "webrtc/api/videotrack.h" |
| 27 #include "webrtc/base/base64.h" | 27 #include "webrtc/base/base64.h" |
| (...skipping 1702 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 |