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

Unified Diff: webrtc/stats/rtcstats_objects.cc

Issue 2619353007: RTCRTPStreamStats.mediaTrackId renamed to trackId. (Closed)
Patch Set: Rebase with master 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/pc/rtcstatscollector_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/stats/rtcstats_objects.cc
diff --git a/webrtc/stats/rtcstats_objects.cc b/webrtc/stats/rtcstats_objects.cc
index af87e717405c12f945de1c0afb4cc014b6c1ae4f..68b33f58c2514229345a6dbcb4364cab150437db 100644
--- a/webrtc/stats/rtcstats_objects.cc
+++ b/webrtc/stats/rtcstats_objects.cc
@@ -455,7 +455,7 @@ WEBRTC_RTCSTATS_IMPL(RTCRTPStreamStats, RTCStats, "rtp",
&associate_stats_id,
&is_remote,
&media_type,
- &media_track_id,
+ &track_id,
&transport_id,
&codec_id,
&fir_count,
@@ -476,7 +476,7 @@ RTCRTPStreamStats::RTCRTPStreamStats(
associate_stats_id("associateStatsId"),
is_remote("isRemote", false),
media_type("mediaType"),
- media_track_id("mediaTrackId"),
+ track_id("trackId"),
transport_id("transportId"),
codec_id("codecId"),
fir_count("firCount"),
@@ -493,7 +493,7 @@ RTCRTPStreamStats::RTCRTPStreamStats(
associate_stats_id(other.associate_stats_id),
is_remote(other.is_remote),
media_type(other.media_type),
- media_track_id(other.media_track_id),
+ track_id(other.track_id),
transport_id(other.transport_id),
codec_id(other.codec_id),
fir_count(other.fir_count),
« no previous file with comments | « webrtc/pc/rtcstatscollector_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698