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

Unified Diff: net/spdy/spdy_network_transaction_spdy21_unittest.cc

Issue 9703050: SPDY - don't persist SpdySettings until we convert it to a map. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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_network_transaction_spdy21_unittest.cc
===================================================================
--- net/spdy/spdy_network_transaction_spdy21_unittest.cc (revision 126690)
+++ net/spdy/spdy_network_transaction_spdy21_unittest.cc (working copy)
@@ -4453,6 +4453,8 @@
EXPECT_EQ("HTTP/1.1 200 OK", out.status_line);
EXPECT_EQ("hello!", out.response_data);
+ // TODO(rtenneti): Persist spdy settings.
+#ifdef PERSIST_SPDY_SETTINGS
{
// Verify we had two persisted settings.
spdy::SpdySettings saved_settings =
@@ -4474,6 +4476,7 @@
EXPECT_EQ(kSampleId3, setting.first.id());
EXPECT_EQ(kSampleValue3, setting.second);
}
+#endif
}
// Test that when there are settings saved that they are sent back to the

Powered by Google App Engine
This is Rietveld 408576698