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

Unified Diff: net/spdy/spdy_test_util_spdy2.cc

Issue 10209012: Move SpdyFramer::set_enable_compression_default to BufferedSpdyFramer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move to BufferedSpdyFramer Created 8 years, 8 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_network_transaction_spdy3_unittest.cc ('k') | net/spdy/spdy_test_util_spdy3.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_test_util_spdy2.cc
diff --git a/net/spdy/spdy_test_util_spdy2.cc b/net/spdy/spdy_test_util_spdy2.cc
index 3d43f125d3189289b7da3287abb34edb8332b0f0..14178dfd758e8a7b42a9c73a5608615a1b0c3f97 100644
--- a/net/spdy/spdy_test_util_spdy2.cc
+++ b/net/spdy/spdy_test_util_spdy2.cc
@@ -1007,13 +1007,13 @@ SpdyTestStateHelper::SpdyTestStateHelper() {
SpdySession::set_enable_ping_based_connection_checking(false);
// Compression is per-session which makes it impossible to create
// SPDY frames with static methods.
- SpdyFramer::set_enable_compression_default(false);
+ BufferedSpdyFramer::set_enable_compression_default(false);
}
SpdyTestStateHelper::~SpdyTestStateHelper() {
SpdySession::ResetStaticSettingsToInit();
// TODO(rch): save/restore this value
- SpdyFramer::set_enable_compression_default(true);
+ BufferedSpdyFramer::set_enable_compression_default(true);
}
} // namespace test_spdy2
« no previous file with comments | « net/spdy/spdy_network_transaction_spdy3_unittest.cc ('k') | net/spdy/spdy_test_util_spdy3.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698