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

Unified Diff: net/spdy/spdy_session.h

Issue 786123002: Update from https://crrev.com/307330 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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/spdy/spdy_protocol.h ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.h
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
index 06dfae6e4d81fe098aff6ec8cf60a91e4bed4cca..a468dc412da09aed698ee8299c6d1e19c672a22d 100644
--- a/net/spdy/spdy_session.h
+++ b/net/spdy/spdy_session.h
@@ -729,7 +729,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface,
RequestPriority priority);
// Send the PING frame.
- void WritePingFrame(uint32 unique_id, bool is_ack);
+ void WritePingFrame(SpdyPingId unique_id, bool is_ack);
// Post a CheckPingStatus call after delay. Don't post if there is already
// CheckPingStatus running.
@@ -948,7 +948,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface,
int64 pings_in_flight() const { return pings_in_flight_; }
- uint32 next_ping_id() const { return next_ping_id_; }
+ SpdyPingId next_ping_id() const { return next_ping_id_; }
base::TimeTicks last_activity_time() const { return last_activity_time_; }
@@ -1085,7 +1085,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface,
int64 pings_in_flight_;
// This is the next ping_id (unique_id) to be sent in PING frame.
- uint32 next_ping_id_;
+ SpdyPingId next_ping_id_;
// This is the last time we have sent a PING.
base::TimeTicks last_ping_sent_time_;
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698