summaryrefslogtreecommitdiff
path: root/chromium/net/spdy/spdy_framer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/spdy/spdy_framer.h')
-rw-r--r--chromium/net/spdy/spdy_framer.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/chromium/net/spdy/spdy_framer.h b/chromium/net/spdy/spdy_framer.h
index fa004696a4c..0447af07515 100644
--- a/chromium/net/spdy/spdy_framer.h
+++ b/chromium/net/spdy/spdy_framer.h
@@ -19,6 +19,8 @@
#include "net/spdy/spdy_header_block.h"
#include "net/spdy/spdy_protocol.h"
+// TODO(akalin): Remove support for CREDENTIAL frames.
+
typedef struct z_stream_s z_stream; // Forward declaration for zlib.
namespace net {
@@ -378,7 +380,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
SpdyPriority priority,
uint8 credential_slot,
SpdyControlFlags flags,
- bool compressed,
const SpdyHeaderBlock* headers);
SpdySerializedFrame* SerializeSynStream(const SpdySynStreamIR& syn_stream);
@@ -390,7 +391,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
// |headers| is the header block to include in the frame.
SpdyFrame* CreateSynReply(SpdyStreamId stream_id,
SpdyControlFlags flags,
- bool compressed,
const SpdyHeaderBlock* headers);
SpdySerializedFrame* SerializeSynReply(const SpdySynReplyIR& syn_reply);
@@ -422,7 +422,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
// arguments are the same as for CreateSynReply.
SpdyFrame* CreateHeaders(SpdyStreamId stream_id,
SpdyControlFlags flags,
- bool compressed,
const SpdyHeaderBlock* headers);
SpdySerializedFrame* SerializeHeaders(const SpdyHeadersIR& headers);
@@ -624,8 +623,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
// Set the error code and moves the framer into the error state.
void set_error(SpdyError error);
- size_t GoAwaySize() const;
-
// The maximum size of the control frames that we support.
// This limit is arbitrary. We can enforce it here or at the application
// layer. We chose the framing layer, but this can be changed (or removed)