summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_session.h
diff options
context:
space:
mode:
authorjgraettinger@chromium.org <jgraettinger@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-12 19:03:55 +0000
committerjgraettinger@chromium.org <jgraettinger@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-12 19:03:55 +0000
commitbd254d51c03c91f8a42113766d071834be3f8d08 (patch)
tree52c06f54be693a7276bf96db85e30da9ea7993d7 /net/spdy/spdy_session.h
parentccb820241f34c1a1f7a8eefcb7b20cd87b877c8d (diff)
downloadchromium_src-bd254d51c03c91f8a42113766d071834be3f8d08.zip
chromium_src-bd254d51c03c91f8a42113766d071834be3f8d08.tar.gz
chromium_src-bd254d51c03c91f8a42113766d071834be3f8d08.tar.bz2
Changes the type for PING id from uint32 to uint64.
Required for HTTP2. This lands server change 60786018 by birenroy. Minor type updates to QUIC/SpdySession & friends were also required. Review URL: https://codereview.chromium.org/154353003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_session.h')
-rw-r--r--net/spdy/spdy_session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
index 5d5a877..73f8cd4 100644
--- a/net/spdy/spdy_session.h
+++ b/net/spdy/spdy_session.h
@@ -784,7 +784,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface,
virtual void OnError(SpdyFramer::SpdyError error_code) OVERRIDE;
virtual void OnStreamError(SpdyStreamId stream_id,
const std::string& description) OVERRIDE;
- virtual void OnPing(uint32 unique_id) OVERRIDE;
+ virtual void OnPing(SpdyPingId unique_id) OVERRIDE;
virtual void OnRstStream(SpdyStreamId stream_id,
SpdyRstStreamStatus status) OVERRIDE;
virtual void OnGoAway(SpdyStreamId last_accepted_stream_id,