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

Unified Diff: net/spdy/spdy_stream.h

Issue 1471693006: Remove kint32min. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint3
Patch Set: rebase 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 | « mojo/edk/embedder/platform_channel_pair_posix.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_stream.h
diff --git a/net/spdy/spdy_stream.h b/net/spdy/spdy_stream.h
index faf06e355ce82e329d8975cd8418a0f634939de2..b356aa143f36c5d85bd05d1b3233334b814728b0 100644
--- a/net/spdy/spdy_stream.h
+++ b/net/spdy/spdy_stream.h
@@ -11,7 +11,6 @@
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -169,8 +168,8 @@ class NET_EXPORT_PRIVATE SpdyStream {
const base::WeakPtr<SpdySession>& session,
const GURL& url,
RequestPriority priority,
- int32 initial_send_window_size,
- int32 max_recv_window_size,
+ int32_t initial_send_window_size,
+ int32_t max_recv_window_size,
const BoundNetLog& net_log);
~SpdyStream();
@@ -198,9 +197,9 @@ class NET_EXPORT_PRIVATE SpdyStream {
RequestPriority priority() const { return priority_; }
- int32 send_window_size() const { return send_window_size_; }
+ int32_t send_window_size() const { return send_window_size_; }
- int32 recv_window_size() const { return recv_window_size_; }
+ int32_t recv_window_size() const { return recv_window_size_; }
bool send_stalled_by_flow_control() const {
return send_stalled_by_flow_control_;
@@ -220,7 +219,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
// closed.
//
// If stream flow control is turned off, this must not be called.
- void AdjustSendWindowSize(int32 delta_window_size);
+ void AdjustSendWindowSize(int32_t delta_window_size);
// Called when bytes are consumed from a SpdyBuffer for a DATA frame
// that is to be written or is being written. Increases the send
@@ -241,7 +240,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
// nothing if the stream is already closed.
//
// If stream flow control is turned off, this must not be called.
- void IncreaseSendWindowSize(int32 delta_window_size);
+ void IncreaseSendWindowSize(int32_t delta_window_size);
// If stream flow control is turned on, called by the session to
// decrease this stream's send window size by |delta_window_size|,
@@ -250,7 +249,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
// to go negative. Does nothing if the stream is already closed.
//
// If stream flow control is turned off, this must not be called.
- void DecreaseSendWindowSize(int32 delta_window_size);
+ void DecreaseSendWindowSize(int32_t delta_window_size);
// Called when bytes are consumed by the delegate from a SpdyBuffer
// containing received data. Increases the receive window size
@@ -267,7 +266,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
// stream is not active.
//
// If stream flow control is turned off, this must not be called.
- void IncreaseRecvWindowSize(int32 delta_window_size);
+ void IncreaseRecvWindowSize(int32_t delta_window_size);
// Called by OnDataReceived or OnPaddingConsumed (which are in turn called by
// the session) to decrease this stream's receive window size by
@@ -276,7 +275,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
//
// If stream flow control is turned off or the stream is not active,
// this must not be called.
- void DecreaseRecvWindowSize(int32 delta_window_size);
+ void DecreaseRecvWindowSize(int32_t delta_window_size);
int GetPeerAddress(IPEndPoint* address) const;
int GetLocalAddress(IPEndPoint* address) const;
@@ -425,7 +424,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
void AddRawReceivedBytes(size_t received_bytes);
void AddRawSentBytes(size_t sent_bytes);
- int64 raw_received_bytes() const { return raw_received_bytes_; }
+ int64_t raw_received_bytes() const { return raw_received_bytes_; }
int64_t raw_sent_bytes() const { return raw_sent_bytes_; }
bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const;
@@ -509,22 +508,22 @@ class NET_EXPORT_PRIVATE SpdyStream {
bool send_stalled_by_flow_control_;
// Current send window size.
- int32 send_window_size_;
+ int32_t send_window_size_;
// Maximum receive window size. Each time a WINDOW_UPDATE is sent, it
// restores the receive window size to this value.
- int32 max_recv_window_size_;
+ int32_t max_recv_window_size_;
// Sum of |session_unacked_recv_window_bytes_| and current receive window
// size.
// TODO(bnc): Rename or change semantics so that |window_size_| is actual
// window size.
- int32 recv_window_size_;
+ int32_t recv_window_size_;
// When bytes are consumed, SpdyIOBuffer destructor calls back to SpdySession,
// and this member keeps count of them until the corresponding WINDOW_UPDATEs
// are sent.
- int32 unacked_recv_window_bytes_;
+ int32_t unacked_recv_window_bytes_;
const base::WeakPtr<SpdySession> session_;
@@ -570,7 +569,7 @@ class NET_EXPORT_PRIVATE SpdyStream {
// Number of bytes that have been received on this stream, including frame
// overhead and headers.
- int64 raw_received_bytes_;
+ int64_t raw_received_bytes_;
// Number of bytes that have been sent on this stream, including frame
// overhead and headers.
int64_t raw_sent_bytes_;
« no previous file with comments | « mojo/edk/embedder/platform_channel_pair_posix.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698