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

Unified Diff: remoting/base/protocol_decoder.cc

Issue 2801003: Tighten up compile warnings based to match other chromium sub-projects.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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
« no previous file with comments | « remoting/base/protocol_decoder.h ('k') | remoting/client/plugin/chromoting_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/protocol_decoder.cc
===================================================================
--- remoting/base/protocol_decoder.cc (revision 49812)
+++ remoting/base/protocol_decoder.cc (working copy)
@@ -69,9 +69,8 @@
std::deque<int> buffer_sizes;
while (next_payload_ > 0 && !data_list_.empty()) {
scoped_refptr<media::DataBuffer> buffer = data_list_.front();
- int read_bytes = std::min(
- static_cast<int>(buffer->GetDataSize()) - last_read_position_,
- next_payload_);
+ size_t read_bytes = std::min(buffer->GetDataSize() - last_read_position_,
+ next_payload_);
buffers.push_back(buffer);
buffer_pointers.push_back(buffer->GetData() + last_read_position_);
@@ -88,7 +87,7 @@
last_read_position_ = 0;
}
}
- DCHECK_EQ(0, next_payload_);
+ DCHECK_EQ(0UL, next_payload_);
DCHECK_EQ(buffers.size(), buffer_pointers.size());
DCHECK_EQ(buffers.size(), buffer_sizes.size());
@@ -108,7 +107,7 @@
bool ProtocolDecoder::GetPayloadSize(int* size) {
// The header has a size of 4 bytes.
- const int kHeaderSize = sizeof(int32);
+ const size_t kHeaderSize = sizeof(int32);
if (available_bytes_ < kHeaderSize)
return false;
« no previous file with comments | « remoting/base/protocol_decoder.h ('k') | remoting/client/plugin/chromoting_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698