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

Unified Diff: net/quic/reliable_quic_stream_test.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/reliable_quic_stream.cc ('k') | net/quic/spdy_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/reliable_quic_stream_test.cc
diff --git a/net/quic/reliable_quic_stream_test.cc b/net/quic/reliable_quic_stream_test.cc
index daedd307d1a58fc820f9c1af259850e77e55d0d2..73973ffc4671b2204c6f76a2ff9e65a41d37a0b0 100644
--- a/net/quic/reliable_quic_stream_test.cc
+++ b/net/quic/reliable_quic_stream_test.cc
@@ -51,7 +51,7 @@ class TestStream : public ReliableQuicStream {
void OnDataAvailable() override {}
- uint32 ProcessRawData(const char* data, uint32 data_len) {
+ uint32_t ProcessRawData(const char* data, uint32_t data_len) {
EXPECT_NE(0u, data_len);
DVLOG(1) << "ProcessData data_len: " << data_len;
data_ += string(data, data_len);
@@ -129,7 +129,7 @@ class ReliableQuicStreamTest : public ::testing::TestWithParam<bool> {
bool fin_sent() { return ReliableQuicStreamPeer::FinSent(stream_); }
bool rst_sent() { return ReliableQuicStreamPeer::RstSent(stream_); }
- void set_initial_flow_control_window_bytes(uint32 val) {
+ void set_initial_flow_control_window_bytes(uint32_t val) {
initial_flow_control_window_bytes_ = val;
}
@@ -156,7 +156,7 @@ class ReliableQuicStreamTest : public ::testing::TestWithParam<bool> {
TestStream* stream_;
SpdyHeaderBlock headers_;
QuicWriteBlockedList* write_blocked_list_;
- uint32 initial_flow_control_window_bytes_;
+ uint32_t initial_flow_control_window_bytes_;
QuicTime::Delta zero_;
QuicVersionVector supported_versions_;
const QuicStreamId kTestStreamId = 5u;
« no previous file with comments | « net/quic/reliable_quic_stream.cc ('k') | net/quic/spdy_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698