commit | 3443bb75a08811a16fd2dd406f72878703f4a861 | [log] [tgz] |
---|---|---|
author | hbos <hbos@webrtc.org> | Tue Feb 07 06:28:11 2017 -0800 |
committer | Commit bot <commit-bot@chromium.org> | Tue Feb 07 14:28:11 2017 +0000 |
tree | 51152f97587d1026db0ab3e0f482c03449f5630e | |
parent | 87b8e9f3a24dfc08f3e3f9bf5cf8f01c2ae04a4c [diff] [blame] |
RTCRTPStreamStats.ssrc changed type to uint32_t. As per PR: https://github.com/w3c/webrtc-stats/pull/157 BUG=webrtc:7065, webrtc:7066 Review-Url: https://codereview.webrtc.org/2675583003 Cr-Commit-Position: refs/heads/master@{#16471}
diff --git a/webrtc/api/stats/rtcstats_objects.h b/webrtc/api/stats/rtcstats_objects.h index 6c24d67..29fcfaf 100644 --- a/webrtc/api/stats/rtcstats_objects.h +++ b/webrtc/api/stats/rtcstats_objects.h
@@ -302,7 +302,7 @@ RTCRTPStreamStats(const RTCRTPStreamStats& other); ~RTCRTPStreamStats() override; - RTCStatsMember<std::string> ssrc; + RTCStatsMember<uint32_t> ssrc; // TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to // set this. crbug.com/657855, 657856 RTCStatsMember<std::string> associate_stats_id;