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

Unified Diff: content/renderer/media/rtc_peer_connection_handler_unittest.cc

Issue 2302873004: Renamed WebRTCStats.h to WebRTCLegacyStats.h and cleaned it up (Closed)
Patch Set: Fixed compile error Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/rtc_peer_connection_handler_unittest.cc
diff --git a/content/renderer/media/rtc_peer_connection_handler_unittest.cc b/content/renderer/media/rtc_peer_connection_handler_unittest.cc
index 42061acb8e307ef4de8055316c270891ca44ac35..01d76bd34a675461a901d02dbbc866d74d8d0403 100644
--- a/content/renderer/media/rtc_peer_connection_handler_unittest.cc
+++ b/content/renderer/media/rtc_peer_connection_handler_unittest.cc
@@ -73,9 +73,9 @@ class MockRTCStatsResponse : public LocalRTCStatsResponse {
statistic_count_(0) {
}
- void addStats(const blink::WebRTCStats& stats) override {
+ void addStats(const blink::WebRTCLegacyStats& stats) override {
++report_count_;
- for (std::unique_ptr<blink::WebRTCStatsMemberIterator> member(
+ for (std::unique_ptr<blink::WebRTCLegacyStatsMemberIterator> member(
stats.iterator());
!member->isEnd(); member->next()) {
++statistic_count_;

Powered by Google App Engine
This is Rietveld 408576698