| Index: webrtc/stats/rtcstats_objects.cc
|
| diff --git a/webrtc/stats/rtcstats_objects.cc b/webrtc/stats/rtcstats_objects.cc
|
| index d4fea4951929f8e945c71f464da380469544cbcd..e95f5ec66b8232348077131829efdef0189d956e 100644
|
| --- a/webrtc/stats/rtcstats_objects.cc
|
| +++ b/webrtc/stats/rtcstats_objects.cc
|
| @@ -243,7 +243,8 @@ WEBRTC_RTCSTATS_IMPL(RTCIceCandidateStats, RTCStats, "ice-candidate",
|
| &protocol,
|
| &candidate_type,
|
| &priority,
|
| - &url);
|
| + &url,
|
| + &deleted);
|
|
|
| RTCIceCandidateStats::RTCIceCandidateStats(
|
| const std::string& id, int64_t timestamp_us, bool is_remote)
|
| @@ -259,7 +260,8 @@ RTCIceCandidateStats::RTCIceCandidateStats(
|
| protocol("protocol"),
|
| candidate_type("candidateType"),
|
| priority("priority"),
|
| - url("url") {
|
| + url("url"),
|
| + deleted("deleted", false) {
|
| }
|
|
|
| RTCIceCandidateStats::RTCIceCandidateStats(const RTCIceCandidateStats& other)
|
| @@ -270,7 +272,8 @@ RTCIceCandidateStats::RTCIceCandidateStats(const RTCIceCandidateStats& other)
|
| protocol(other.protocol),
|
| candidate_type(other.candidate_type),
|
| priority(other.priority),
|
| - url(other.url) {
|
| + url(other.url),
|
| + deleted(other.deleted) {
|
| }
|
|
|
| RTCIceCandidateStats::~RTCIceCandidateStats() {
|
|
|