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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 350213004: Remove "Accept SETTINGS_COMPRESS_DATA frames for HTTP2." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « no previous file | net/spdy/spdy_protocol.h » ('j') | 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 a131f62037feee8a1a9dea3ef5324bc7cf71b888..eeb533929508d62b9768a80db74f2f8e6dc70a73 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -3498,25 +3498,6 @@ TEST_P(SpdyFramerTest, ReadDuplicateSettings) {
}
}
-// Tests handling of SETTINGS_COMPRESS_DATA.
-TEST_P(SpdyFramerTest, AcceptSettingsCompressData) {
- if (!IsSpdy4()) { return; }
- SpdyFramer framer(spdy_version_);
-
- const unsigned char kFrameData[] = {
- 0x00, 0x05, 0x04, 0x00,
- 0x00, 0x00, 0x00, 0x00,
- 0x05, 0x00, 0x00, 0x00,
- 0x01,
- };
-
- TestSpdyVisitor visitor(spdy_version_);
- visitor.use_compression_ = false;
- visitor.SimulateInFramer(kFrameData, sizeof(kFrameData));
- EXPECT_EQ(1, visitor.setting_count_);
- EXPECT_EQ(0, visitor.error_count_);
-}
-
// Tests handling of SETTINGS frame with entries out of order.
TEST_P(SpdyFramerTest, ReadOutOfOrderSettings) {
SpdyFramer framer(spdy_version_);
« no previous file with comments | « no previous file | net/spdy/spdy_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698