Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Side by Side Diff: webrtc/pc/statscollector_unittest.cc

Issue 2648233003: Adding ability for BaseChannel to use PacketTransportInterface. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/pc/statscollector.h" 16 #include "webrtc/pc/statscollector.h"
17 17
18 #include "webrtc/api/mediastreaminterface.h" 18 #include "webrtc/api/mediastreaminterface.h"
19 #include "webrtc/base/base64.h" 19 #include "webrtc/base/base64.h"
20 #include "webrtc/base/fakesslidentity.h" 20 #include "webrtc/base/fakesslidentity.h"
21 #include "webrtc/base/gunit.h" 21 #include "webrtc/base/gunit.h"
22 #include "webrtc/base/network.h" 22 #include "webrtc/base/network.h"
23 #include "webrtc/base/stringencode.h" 23 #include "webrtc/base/stringencode.h"
24 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 24 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
25 #include "webrtc/media/base/fakemediaengine.h" 25 #include "webrtc/media/base/fakemediaengine.h"
26 #include "webrtc/media/base/test/mock_mediachannel.h" 26 #include "webrtc/media/base/test/mock_mediachannel.h"
27 #include "webrtc/p2p/base/faketransportcontroller.h"
28 #include "webrtc/pc/channelmanager.h" 27 #include "webrtc/pc/channelmanager.h"
29 #include "webrtc/pc/mediastream.h" 28 #include "webrtc/pc/mediastream.h"
30 #include "webrtc/pc/mediastreamtrack.h" 29 #include "webrtc/pc/mediastreamtrack.h"
31 #include "webrtc/pc/peerconnection.h" 30 #include "webrtc/pc/peerconnection.h"
32 #include "webrtc/pc/peerconnectionfactory.h" 31 #include "webrtc/pc/peerconnectionfactory.h"
33 #include "webrtc/pc/test/fakedatachannelprovider.h" 32 #include "webrtc/pc/test/fakedatachannelprovider.h"
34 #include "webrtc/pc/test/fakevideotracksource.h" 33 #include "webrtc/pc/test/fakevideotracksource.h"
35 #include "webrtc/pc/test/mock_peerconnection.h" 34 #include "webrtc/pc/test/mock_peerconnection.h"
36 #include "webrtc/pc/test/mock_webrtcsession.h" 35 #include "webrtc/pc/test/mock_webrtcsession.h"
37 #include "webrtc/pc/videotrack.h" 36 #include "webrtc/pc/videotrack.h"
(...skipping 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after
2026 EXPECT_CALL(*media_channel, GetStats(_)) 2025 EXPECT_CALL(*media_channel, GetStats(_))
2027 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); 2026 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true)));
2028 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); 2027 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard);
2029 stats.GetStats(NULL, &reports); 2028 stats.GetStats(NULL, &reports);
2030 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), 2029 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded),
2031 ExtractSsrcStatsValue(reports, 2030 ExtractSsrcStatsValue(reports,
2032 StatsReport::kStatsValueNameFramesDecoded)); 2031 StatsReport::kStatsValueNameFramesDecoded));
2033 } 2032 }
2034 2033
2035 } // namespace webrtc 2034 } // namespace webrtc
OLDNEW
« webrtc/pc/channel.h ('K') | « webrtc/pc/peerconnectioninterface_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698