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

Unified Diff: net/spdy/spdy_protocol_test_utils.cc

Issue 2675593002: Spdy{RstStream,GoAway}Status -> SpdyErrorCode. (Closed)
Patch Set: Merged master, which includes 145087791. Created 3 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
« no previous file with comments | « net/spdy/spdy_protocol.cc ('k') | net/spdy/spdy_proxy_client_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_protocol_test_utils.cc
diff --git a/net/spdy/spdy_protocol_test_utils.cc b/net/spdy/spdy_protocol_test_utils.cc
index 73cc067cca2aa9caf4ea8150bd1ebc3a6e1988de..a91a55f0c6b52e0c4cac020283d1ce66741a7b61 100644
--- a/net/spdy/spdy_protocol_test_utils.cc
+++ b/net/spdy/spdy_protocol_test_utils.cc
@@ -66,7 +66,7 @@ namespace test {
DVLOG(1) << "VerifySpdyFrameIREquals SpdyGoAwayIR";
if (expected.last_good_stream_id() != actual.last_good_stream_id())
return ::testing::AssertionFailure();
- if (expected.status() != actual.status())
+ if (expected.error_code() != actual.error_code())
return ::testing::AssertionFailure();
if (expected.description() != actual.description())
return ::testing::AssertionFailure();
@@ -141,7 +141,7 @@ namespace test {
DVLOG(1) << "VerifySpdyFrameIREquals SpdyRstStreamIR";
if (expected.stream_id() != actual.stream_id())
return ::testing::AssertionFailure();
- if (expected.status() != actual.status())
+ if (expected.error_code() != actual.error_code())
return ::testing::AssertionFailure();
return ::testing::AssertionSuccess();
« no previous file with comments | « net/spdy/spdy_protocol.cc ('k') | net/spdy/spdy_proxy_client_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698