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

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

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Rebase Created 4 years 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 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2016 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 "webrtc/api/rtcstatscollector.h" 11 #include "webrtc/pc/rtcstatscollector.h"
12 12
13 #include <memory> 13 #include <memory>
14 #include <ostream> 14 #include <ostream>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/api/jsepsessiondescription.h"
19 #include "webrtc/api/mediastream.h"
20 #include "webrtc/api/mediastreamtrack.h"
21 #include "webrtc/api/rtpparameters.h" 18 #include "webrtc/api/rtpparameters.h"
22 #include "webrtc/api/stats/rtcstats_objects.h" 19 #include "webrtc/api/stats/rtcstats_objects.h"
23 #include "webrtc/api/stats/rtcstatsreport.h" 20 #include "webrtc/api/stats/rtcstatsreport.h"
24 #include "webrtc/api/test/mock_datachannel.h"
25 #include "webrtc/api/test/mock_peerconnection.h"
26 #include "webrtc/api/test/mock_webrtcsession.h"
27 #include "webrtc/api/test/rtcstatsobtainer.h"
28 #include "webrtc/base/checks.h" 21 #include "webrtc/base/checks.h"
29 #include "webrtc/base/fakeclock.h" 22 #include "webrtc/base/fakeclock.h"
30 #include "webrtc/base/fakesslidentity.h" 23 #include "webrtc/base/fakesslidentity.h"
31 #include "webrtc/base/gunit.h" 24 #include "webrtc/base/gunit.h"
32 #include "webrtc/base/logging.h" 25 #include "webrtc/base/logging.h"
33 #include "webrtc/base/socketaddress.h" 26 #include "webrtc/base/socketaddress.h"
34 #include "webrtc/base/thread_checker.h" 27 #include "webrtc/base/thread_checker.h"
35 #include "webrtc/base/timedelta.h" 28 #include "webrtc/base/timedelta.h"
36 #include "webrtc/base/timeutils.h" 29 #include "webrtc/base/timeutils.h"
37 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 30 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
38 #include "webrtc/media/base/fakemediaengine.h" 31 #include "webrtc/media/base/fakemediaengine.h"
39 #include "webrtc/media/base/test/mock_mediachannel.h" 32 #include "webrtc/media/base/test/mock_mediachannel.h"
40 #include "webrtc/p2p/base/p2pconstants.h" 33 #include "webrtc/p2p/base/p2pconstants.h"
41 #include "webrtc/p2p/base/port.h" 34 #include "webrtc/p2p/base/port.h"
35 #include "webrtc/pc/jsepsessiondescription.h"
36 #include "webrtc/pc/mediastream.h"
37 #include "webrtc/pc/mediastreamtrack.h"
38 #include "webrtc/pc/test/mock_datachannel.h"
39 #include "webrtc/pc/test/mock_peerconnection.h"
40 #include "webrtc/pc/test/mock_webrtcsession.h"
41 #include "webrtc/pc/test/rtcstatsobtainer.h"
42 42
43 using testing::_; 43 using testing::_;
44 using testing::Invoke; 44 using testing::Invoke;
45 using testing::Return; 45 using testing::Return;
46 using testing::ReturnNull; 46 using testing::ReturnNull;
47 using testing::ReturnRef; 47 using testing::ReturnRef;
48 using testing::SetArgPointee; 48 using testing::SetArgPointee;
49 49
50 namespace webrtc { 50 namespace webrtc {
51 51
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after
1895 rtc::scoped_refptr<FakeRTCStatsCollector> collector_; 1895 rtc::scoped_refptr<FakeRTCStatsCollector> collector_;
1896 }; 1896 };
1897 1897
1898 TEST_F(RTCStatsCollectorTestWithFakeCollector, ThreadUsageAndResultsMerging) { 1898 TEST_F(RTCStatsCollectorTestWithFakeCollector, ThreadUsageAndResultsMerging) {
1899 collector_->VerifyThreadUsageAndResultsMerging(); 1899 collector_->VerifyThreadUsageAndResultsMerging();
1900 } 1900 }
1901 1901
1902 } // namespace 1902 } // namespace
1903 1903
1904 } // namespace webrtc 1904 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698