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

Unified Diff: net/spdy/buffered_spdy_framer_spdy3_unittest.cc

Issue 12256004: Remove SpdySynReplyControlFrame and SpdyGoAwayControlFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/buffered_spdy_framer_spdy2_unittest.cc ('k') | net/spdy/spdy_frame_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/buffered_spdy_framer_spdy3_unittest.cc
diff --git a/net/spdy/buffered_spdy_framer_spdy3_unittest.cc b/net/spdy/buffered_spdy_framer_spdy3_unittest.cc
index c6dc5a285b4e100d3758401cea0d74d27c7c3aca..d2f326a6e34c84259fee3195d6271e5caa289fa3 100644
--- a/net/spdy/buffered_spdy_framer_spdy3_unittest.cc
+++ b/net/spdy/buffered_spdy_framer_spdy3_unittest.cc
@@ -105,7 +105,7 @@ class TestBufferedSpdyVisitor : public BufferedSpdyFramerVisitorInterface {
}
void OnRstStream(const SpdyRstStreamControlFrame& frame) {}
- void OnGoAway(const SpdyGoAwayControlFrame& frame) {}
+ void OnGoAway(const SpdyFrame& frame) {}
void OnPing(const SpdyPingControlFrame& frame) {}
virtual void OnWindowUpdate(SpdyStreamId stream_id,
int delta_window_size) OVERRIDE {
@@ -232,7 +232,7 @@ TEST_F(BufferedSpdyFramerSpdy3Test, ReadSynReplyHeaderBlock) {
headers["alpha"] = "beta";
headers["gamma"] = "delta";
BufferedSpdyFramer framer(3, true);
- scoped_ptr<SpdySynReplyControlFrame> control_frame(
+ scoped_ptr<SpdyFrame> control_frame(
framer.CreateSynReply(1, // stream_id
CONTROL_FLAG_NONE,
true, // compress
« no previous file with comments | « net/spdy/buffered_spdy_framer_spdy2_unittest.cc ('k') | net/spdy/spdy_frame_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698