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

Unified Diff: net/quic/spdy_utils.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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 | « net/quic/spdy_utils.h ('k') | net/quic/stream_sequencer_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/spdy_utils.cc
diff --git a/net/quic/spdy_utils.cc b/net/quic/spdy_utils.cc
index 6703d3da93a3c8ba38eaf8160a759c152122b9ea..3ff15270a162065fb7437fef2f2e6fd5de13766c 100644
--- a/net/quic/spdy_utils.cc
+++ b/net/quic/spdy_utils.cc
@@ -32,7 +32,7 @@ string SpdyUtils::SerializeUncompressedHeaders(const SpdyHeaderBlock& headers) {
// static
bool SpdyUtils::ParseHeaders(const char* data,
- uint32 data_len,
+ uint32_t data_len,
int* content_length,
SpdyHeaderBlock* headers) {
SpdyFramer framer(HTTP2);
@@ -67,7 +67,7 @@ bool SpdyUtils::ParseHeaders(const char* data,
// static
bool SpdyUtils::ParseTrailers(const char* data,
- uint32 data_len,
+ uint32_t data_len,
size_t* final_byte_offset,
SpdyHeaderBlock* trailers) {
SpdyFramer framer(HTTP2);
« no previous file with comments | « net/quic/spdy_utils.h ('k') | net/quic/stream_sequencer_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698