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

Unified Diff: net/spdy/spdy_test_utils.cc

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
Index: net/spdy/spdy_test_utils.cc
diff --git a/net/spdy/spdy_test_utils.cc b/net/spdy/spdy_test_utils.cc
index 6c1396298d51eff264e1c291d7c339a31c15f850..8ea16c8a69f1d834d4c4221c9cea7adde3d9ac21 100644
--- a/net/spdy/spdy_test_utils.cc
+++ b/net/spdy/spdy_test_utils.cc
@@ -95,7 +95,6 @@ void SetFrameFlags(SpdyFrame* frame,
case SPDY2:
case SPDY3:
case SPDY4:
- case SPDY5:
frame->data()[4] = flags;
break;
default:
@@ -118,7 +117,6 @@ void SetFrameLength(SpdyFrame* frame,
}
break;
case SPDY4:
- case SPDY5:
CHECK_GT(1u<<14, length);
{
int32 wire_length = base::HostToNet32(length);

Powered by Google App Engine
This is Rietveld 408576698