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

Unified Diff: net/spdy/spdy_protocol.h

Issue 980393003: Remove some dead code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert removal of DebugLogTableState() definition. Created 5 years, 9 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_framer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_protocol.h
diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h
index 80f46d7745c81abf782c181c8ce929f3e529163e..0f37236536c1ca89b19e88524624b6b5e7c63102 100644
--- a/net/spdy/spdy_protocol.h
+++ b/net/spdy/spdy_protocol.h
@@ -741,10 +741,6 @@ class NET_EXPORT_PRIVATE SpdyRstStreamIR : public SpdyFrameWithStreamIdIR {
base::StringPiece description() const { return description_; }
- void set_description(base::StringPiece description) {
- description_ = description;
- }
-
void Visit(SpdyFrameVisitor* visitor) const override;
private:
@@ -783,9 +779,6 @@ class NET_EXPORT_PRIVATE SpdySettingsIR : public SpdyFrameIR {
}
bool clear_settings() const { return clear_settings_; }
- void set_clear_settings(bool clear_settings) {
- clear_settings_ = clear_settings;
- }
bool is_ack() const { return is_ack_; }
void set_is_ack(bool is_ack) {
is_ack_ = is_ack;
@@ -927,7 +920,6 @@ class NET_EXPORT_PRIVATE SpdyPushPromiseIR
padded_(false),
padding_payload_len_(0) {}
SpdyStreamId promised_stream_id() const { return promised_stream_id_; }
- void set_promised_stream_id(SpdyStreamId id) { promised_stream_id_ = id; }
void Visit(SpdyFrameVisitor* visitor) const override;
« no previous file with comments | « net/spdy/spdy_framer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698