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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 1749203002: Added new method OnStreamEnd to SpdyFramerVisitorInterface, stubbed implementations, No functional … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@115342288
Patch Set: Revert to Patch Set 1 Created 4 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/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_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 34a8a2105431cf112f24bc557067e70d47f594bc..2dcc855bdd31ae3f097b56a073cbe36e295b140b 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -97,6 +97,8 @@ class SpdyFramerTestUtil {
LOG(FATAL);
}
+ void OnStreamEnd(SpdyStreamId stream_id) override { LOG(FATAL); }
+
void OnStreamPadding(SpdyStreamId stream_id, size_t len) override {
LOG(FATAL);
}
@@ -325,6 +327,10 @@ class TestSpdyVisitor : public SpdyFramerVisitorInterface,
LOG(INFO) << "\", " << len << ")\n";
}
+ void OnStreamEnd(SpdyStreamId stream_id) override {
+ LOG(DFATAL) << "Unimplemented.";
+ }
+
void OnStreamPadding(SpdyStreamId stream_id, size_t len) override {
EXPECT_EQ(header_stream_id_, stream_id);
data_bytes_ += len;
« 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