Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(924)

Unified Diff: media/cast/rtcp/rtcp_sender.cc

Issue 25782002: Style fixes for cast_unittest to build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/cast/rtcp/rtcp_sender.cc
diff --git a/media/cast/rtcp/rtcp_sender.cc b/media/cast/rtcp/rtcp_sender.cc
index 4791a9254b2a9b211655d47bd68ad75c290a89ca..616ab163ed6fbd9a0c50e06f270ee8c3a513eca4 100644
--- a/media/cast/rtcp/rtcp_sender.cc
+++ b/media/cast/rtcp/rtcp_sender.cc
@@ -25,7 +25,8 @@ RtcpSender::RtcpSender(PacedPacketSender* outgoing_transport,
: ssrc_(sending_ssrc),
c_name_(c_name),
transport_(outgoing_transport) {
- DCHECK_LT(c_name_.length(), kRtcpCnameSize) << "Invalid config";
+ DCHECK_LT(static_cast<int>(c_name_.length()),
+ kRtcpCnameSize) << "Invalid config";
hubbe 2013/10/02 19:44:52 Perhaps kRtcpCnameSize should be size_t?
Alpha Left Google 2013/10/02 19:56:23 Removed from this change.
}
RtcpSender::~RtcpSender() {}

Powered by Google App Engine
This is Rietveld 408576698