Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / common_types.h
index 3601508..5ae6456 100644 (file)
@@ -246,13 +246,6 @@ struct RtcpStatistics {
   uint32_t cumulative_lost;
   uint32_t extended_max_sequence_number;
   uint32_t jitter;
-
-  bool operator==(const RtcpStatistics& other) const {
-    return fraction_lost == other.fraction_lost &&
-           cumulative_lost == other.cumulative_lost &&
-           extended_max_sequence_number == other.extended_max_sequence_number &&
-           jitter == other.jitter;
-  }
 };
 
 // Callback, called whenever a new rtcp report block is transmitted.
@@ -280,13 +273,6 @@ struct StreamDataCounters {
   uint32_t packets;  // Number of packets.
   uint32_t retransmitted_packets;  // Number of retransmitted packets.
   uint32_t fec_packets;  // Number of redundancy packets.
-
-  bool operator==(const StreamDataCounters& other) const {
-    return bytes == other.bytes && header_bytes == other.header_bytes &&
-           padding_bytes == other.padding_bytes && packets == other.packets &&
-           retransmitted_packets == other.retransmitted_packets &&
-           fec_packets == other.fec_packets;
-  }
 };
 
 // Callback, called whenever byte/packet counts have been updated.