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

Unified Diff: net/spdy/spdy_session_unittest.cc

Issue 141953004: SPDY cleanup: remove credential slot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixups to get flip_in_mem_edsm_server_unittests building & passing. Created 6 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_session_unittest.cc
diff --git a/net/spdy/spdy_session_unittest.cc b/net/spdy/spdy_session_unittest.cc
index 32c94a0aa2b712b1210775b7aaed5cc211e70d06..9b79be4f9c67918f9ea0c16543776549ac952f36 100644
--- a/net/spdy/spdy_session_unittest.cc
+++ b/net/spdy/spdy_session_unittest.cc
@@ -921,7 +921,7 @@ TEST_P(SpdySessionTest, DeleteExpiredPushStreams) {
// OnSynStream() expects |in_io_loop_| to be true.
session->in_io_loop_ = true;
- session->OnSynStream(2, 1, 0, 0, true, false, headers);
+ session->OnSynStream(2, 1, 0, true, false, headers);
session->in_io_loop_ = false;
// Verify that there is one unclaimed push stream.
@@ -936,7 +936,7 @@ TEST_P(SpdySessionTest, DeleteExpiredPushStreams) {
spdy_util_.AddUrlToHeaderBlock("http://www.google.com/b.dat", &headers);
session->in_io_loop_ = true;
- session->OnSynStream(4, 1, 0, 0, true, false, headers);
+ session->OnSynStream(4, 1, 0, true, false, headers);
session->in_io_loop_ = false;
// Verify that the second pushed stream evicted the first pushed stream.

Powered by Google App Engine
This is Rietveld 408576698