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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_BASE_PROTOCOL_DECODER_H_ 5 #ifndef REMOTING_BASE_PROTOCOL_DECODER_H_
6 #define REMOTING_BASE_PROTOCOL_DECODER_H_ 6 #define REMOTING_BASE_PROTOCOL_DECODER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // Parse one message from |data_list_|. Return true if sucessful. 47 // Parse one message from |data_list_|. Return true if sucessful.
48 template <typename T> 48 template <typename T>
49 bool ParseOneMessage(T** messages); 49 bool ParseOneMessage(T** messages);
50 50
51 // A utility method to read payload size of the protocol buffer from the 51 // A utility method to read payload size of the protocol buffer from the
52 // data list. Return false if we don't have enough data. 52 // data list. Return false if we don't have enough data.
53 bool GetPayloadSize(int* size); 53 bool GetPayloadSize(int* size);
54 54
55 typedef std::deque<scoped_refptr<media::DataBuffer> > DataList; 55 typedef std::deque<scoped_refptr<media::DataBuffer> > DataList;
56 DataList data_list_; 56 DataList data_list_;
57 int last_read_position_; 57 size_t last_read_position_;
58 58
59 // Count the number of bytes in |data_list_| not read. 59 // Count the number of bytes in |data_list_| not read.
60 int available_bytes_; 60 size_t available_bytes_;
61 61
62 // Stores the size of the next payload if known. 62 // Stores the size of the next payload if known.
63 int next_payload_; 63 size_t next_payload_;
64 64
65 // True if the size of the next payload is known. After one payload is read, 65 // True if the size of the next payload is known. After one payload is read,
66 // this is reset to false. 66 // this is reset to false.
67 bool next_payload_known_; 67 bool next_payload_known_;
68 }; 68 };
69 69
70 } // namespace remoting 70 } // namespace remoting
71 71
72 #endif // REMOTING_BASE_PROTOCOL_DECODER_H_ 72 #endif // REMOTING_BASE_PROTOCOL_DECODER_H_
OLDNEW
« 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