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

Unified Diff: net/spdy/buffered_spdy_framer_unittest.cc

Issue 1461273003: Remove already obsolete CREDENTIAL frame from SPDY code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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.h ('k') | net/spdy/spdy_framer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/buffered_spdy_framer_unittest.cc
diff --git a/net/spdy/buffered_spdy_framer_unittest.cc b/net/spdy/buffered_spdy_framer_unittest.cc
index 8510db7c58e2da32d9712599d60a9c5a7db5156a..efd977a6b8b38af2c945d90859de20127bdc76ec 100644
--- a/net/spdy/buffered_spdy_framer_unittest.cc
+++ b/net/spdy/buffered_spdy_framer_unittest.cc
@@ -118,11 +118,6 @@ class TestBufferedSpdyVisitor : public BufferedSpdyFramerVisitorInterface {
goaway_debug_data_.assign(debug_data.data(), debug_data.size());
}
- bool OnCredentialFrameData(const char*, size_t) {
- LOG(FATAL) << "Unexpected OnCredentialFrameData call.";
- return false;
- }
-
void OnDataFrameHeader(const SpdyFrame* frame) {
LOG(FATAL) << "Unexpected OnDataFrameHeader call.";
}
@@ -147,8 +142,6 @@ class TestBufferedSpdyVisitor : public BufferedSpdyFramerVisitorInterface {
return true;
}
- void OnCredential(const SpdyFrame& frame) {}
-
// Convenience function which runs a framer simulation with particular input.
void SimulateInFramer(const unsigned char* input, size_t size) {
buffered_spdy_framer_.set_visitor(this);
« no previous file with comments | « net/spdy/buffered_spdy_framer.h ('k') | net/spdy/spdy_framer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698