Index: net/spdy/buffered_spdy_framer.h |
diff --git a/net/spdy/buffered_spdy_framer.h b/net/spdy/buffered_spdy_framer.h |
index aa4163e0f0a4bacf36bc4fee09f748f759361a53..ea641510654555a54cf7833adc98ea7a5d8d9507 100644 |
--- a/net/spdy/buffered_spdy_framer.h |
+++ b/net/spdy/buffered_spdy_framer.h |
@@ -92,7 +92,8 @@ class NET_EXPORT_PRIVATE BufferedSpdyFramerVisitorInterface { |
class NET_EXPORT_PRIVATE BufferedSpdyFramer |
: public SpdyFramerVisitorInterface { |
public: |
- explicit BufferedSpdyFramer(int version); |
+ BufferedSpdyFramer(int version, |
+ bool enable_compression); |
virtual ~BufferedSpdyFramer(); |
// Sets callbacks to be called from the buffered spdy framer. A visitor must |
@@ -178,8 +179,6 @@ class NET_EXPORT_PRIVATE BufferedSpdyFramer |
SpdyDataFlags flags); |
SpdyPriority GetHighestPriority() const; |
bool IsCompressible(const SpdyFrame& frame) const; |
- // Specify if newly created SpdySessions should have compression enabled. |
- static void set_enable_compression_default(bool value); |
int frames_received() const { return frames_received_; } |