summaryrefslogtreecommitdiffstats
path: root/net/spdy/buffered_spdy_framer.cc
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 21:15:44 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 21:15:44 +0000
commita5f3bbdb16139b635d4328957efa0da1745e8d7c (patch)
treeebb422fd85880224f937ef4f57299b739d889cce /net/spdy/buffered_spdy_framer.cc
parent9a01143136ebef2586d03f923c9d63d2c54f5d45 (diff)
downloadchromium_src-a5f3bbdb16139b635d4328957efa0da1745e8d7c.zip
chromium_src-a5f3bbdb16139b635d4328957efa0da1745e8d7c.tar.gz
chromium_src-a5f3bbdb16139b635d4328957efa0da1745e8d7c.tar.bz2
Declaration of SPDY 4 PUSH_PROMISE; not yet used.
This lands server change 48855179. R=rtenneti@chromium.org Review URL: https://codereview.chromium.org/19269003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/buffered_spdy_framer.cc')
-rw-r--r--net/spdy/buffered_spdy_framer.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/spdy/buffered_spdy_framer.cc b/net/spdy/buffered_spdy_framer.cc
index 8111925..14afaa3 100644
--- a/net/spdy/buffered_spdy_framer.cc
+++ b/net/spdy/buffered_spdy_framer.cc
@@ -192,6 +192,11 @@ void BufferedSpdyFramer::OnWindowUpdate(SpdyStreamId stream_id,
visitor_->OnWindowUpdate(stream_id, delta_window_size);
}
+void BufferedSpdyFramer::OnPushPromise(SpdyStreamId stream_id,
+ SpdyStreamId promised_stream_id) {
+ visitor_->OnPushPromise(stream_id, promised_stream_id);
+}
+
int BufferedSpdyFramer::protocol_version() {
return spdy_framer_.protocol_version();
}