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

Unified Diff: remoting/base/protocol_decoder.h

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/multiple_array_input_stream_unittest.cc ('k') | remoting/base/protocol_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/protocol_decoder.h
===================================================================
--- remoting/base/protocol_decoder.h (revision 49812)
+++ remoting/base/protocol_decoder.h (working copy)
@@ -54,13 +54,13 @@
typedef std::deque<scoped_refptr<media::DataBuffer> > DataList;
DataList data_list_;
- int last_read_position_;
+ size_t last_read_position_;
// Count the number of bytes in |data_list_| not read.
- int available_bytes_;
+ size_t available_bytes_;
// Stores the size of the next payload if known.
- int next_payload_;
+ size_t next_payload_;
// True if the size of the next payload is known. After one payload is read,
// this is reset to false.
« no previous file with comments | « remoting/base/multiple_array_input_stream_unittest.cc ('k') | remoting/base/protocol_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698