Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Unified Diff: net/spdy/spdy_framer.h

Issue 2414293002: Deprecates --spdy_framer_use_new_methods4. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_flags.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/spdy/spdy_flags.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698