aboutsummaryrefslogtreecommitdiff
path: root/stats
diff options
context:
space:
mode:
authorHarald Alvestrand <hta@webrtc.org>2020-06-05 15:38:51 +0200
committerCommit Bot <commit-bot@chromium.org>2020-06-07 21:57:50 +0000
commit10ef84728937fe73e7d8118c9c187601033450f3 (patch)
tree9211286163c727a5699dcf75f0c5af5d55b22f73 /stats
parent4a4f162f713a5c14725a1828e1213d1940f4fbd4 (diff)
downloadwebrtc-10ef84728937fe73e7d8118c9c187601033450f3.tar.gz
Correct name of DC.dataChannelIdentifier stats member
Bug: webrtc:8787 Change-Id: Ie32b38f0671e89e94017f439de7614142328642f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176509 Reviewed-by: Henrik Boström <hbos@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31457}
Diffstat (limited to 'stats')
-rw-r--r--stats/rtcstats_objects.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/stats/rtcstats_objects.cc b/stats/rtcstats_objects.cc
index 453acce925..6c7b8d2123 100644
--- a/stats/rtcstats_objects.cc
+++ b/stats/rtcstats_objects.cc
@@ -124,7 +124,7 @@ RTCCodecStats::~RTCCodecStats() {}
WEBRTC_RTCSTATS_IMPL(RTCDataChannelStats, RTCStats, "data-channel",
&label,
&protocol,
- &datachannelid,
+ &data_channel_identifier,
&state,
&messages_sent,
&bytes_sent,
@@ -140,7 +140,7 @@ RTCDataChannelStats::RTCDataChannelStats(std::string&& id, int64_t timestamp_us)
: RTCStats(std::move(id), timestamp_us),
label("label"),
protocol("protocol"),
- datachannelid("datachannelid"),
+ data_channel_identifier("dataChannelIdentifier"),
state("state"),
messages_sent("messagesSent"),
bytes_sent("bytesSent"),
@@ -151,7 +151,7 @@ RTCDataChannelStats::RTCDataChannelStats(const RTCDataChannelStats& other)
: RTCStats(other.id(), other.timestamp_us()),
label(other.label),
protocol(other.protocol),
- datachannelid(other.datachannelid),
+ data_channel_identifier(other.data_channel_identifier),
state(other.state),
messages_sent(other.messages_sent),
bytes_sent(other.bytes_sent),