| Index: net/spdy/spdy_framer.h
|
| diff --git a/net/spdy/spdy_framer.h b/net/spdy/spdy_framer.h
|
| index 7fd04e4a83663520594e567923cbb588d16495f4..ecfcc4291fa4f8f1c6780139c539a47691e5cf53 100644
|
| --- a/net/spdy/spdy_framer.h
|
| +++ b/net/spdy/spdy_framer.h
|
| @@ -635,11 +635,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
|
| void SetEncoderHeaderTableDebugVisitor(
|
| std::unique_ptr<HpackHeaderTable::DebugVisitorInterface> visitor);
|
|
|
| - // For testing support (i.e. for clients and backends),
|
| - // allow overriding the flag on a per framer basis.
|
| - void set_use_new_methods_for_test(bool v) { use_new_methods_ = v; }
|
| - bool use_new_methods_for_test() const { return use_new_methods_; }
|
| -
|
| protected:
|
| friend class BufferedSpdyFramer;
|
| friend class HttpNetworkLayer; // This is temporary for the server.
|
| @@ -907,9 +902,6 @@ class NET_EXPORT_PRIVATE SpdyFramer {
|
| // If true, then ProcessInput returns after processing a full frame,
|
| // rather than reading all available input.
|
| bool process_single_input_frame_ = false;
|
| -
|
| - bool use_new_methods_ =
|
| - FLAGS_chromium_http2_flag_spdy_framer_use_new_methods4;
|
| };
|
|
|
| } // namespace net
|
|
|