| Index: media/cast/rtcp/rtcp_defines.h
|
| diff --git a/media/cast/rtcp/rtcp_defines.h b/media/cast/rtcp/rtcp_defines.h
|
| index 63a0f6aaa9dbc5154f7b3ebda1cca03f9e490f48..0c7359d8e05867f19b8fecaae84ce9e4a3221cff 100644
|
| --- a/media/cast/rtcp/rtcp_defines.h
|
| +++ b/media/cast/rtcp/rtcp_defines.h
|
| @@ -12,7 +12,7 @@
|
| #include "media/cast/cast_config.h"
|
| #include "media/cast/cast_defines.h"
|
| #include "media/cast/logging/logging_defines.h"
|
| -#include "media/cast/net/cast_net_defines.h"
|
| +#include "media/cast/transport/cast_transport_defines.h"
|
|
|
| namespace media {
|
| namespace cast {
|
| @@ -79,14 +79,6 @@ struct RtcpReceiverReferenceTimeReport {
|
| uint32 ntp_fraction;
|
| };
|
|
|
| -inline bool operator==(RtcpSenderInfo lhs, RtcpSenderInfo rhs) {
|
| - return lhs.ntp_seconds == rhs.ntp_seconds &&
|
| - lhs.ntp_fraction == rhs.ntp_fraction &&
|
| - lhs.rtp_timestamp == rhs.rtp_timestamp &&
|
| - lhs.send_packet_count == rhs.send_packet_count &&
|
| - lhs.send_octet_count == rhs.send_octet_count;
|
| -}
|
| -
|
| inline bool operator==(RtcpReceiverReferenceTimeReport lhs,
|
| RtcpReceiverReferenceTimeReport rhs) {
|
| return lhs.remote_ssrc == rhs.remote_ssrc &&
|
|
|