Index: net/flip/flip_network_transaction.cc |
diff --git a/net/flip/flip_network_transaction.cc b/net/flip/flip_network_transaction.cc |
index 77059fadd83d446e6b0203fb04dcab623003598b..e23342d14344be8d411ebbea5edf275ef135ab1d 100644 |
--- a/net/flip/flip_network_transaction.cc |
+++ b/net/flip/flip_network_transaction.cc |
@@ -308,7 +308,7 @@ int FlipNetworkTransaction::DoInitConnection() { |
#undef USE_MULTIPLE_CONNECTIONS |
#undef DIVERT_URLS_TO_TEST_SERVER |
#if defined(USE_MULTIPLE_CONNECTIONS) || !defined(DIVERT_URLS_TO_TEST_SERVER) |
- flip_ = FlipSession::GetFlipSession(resolve_info, session_); |
+ flip_ = session_->flip_session_pool()->Get(resolve_info, session_); |
Mike Belshe
2009/11/04 00:21:54
Note: I have another CL with changes in this area
|
#endif |
// Use this to divert URLs to a test server. |
@@ -318,7 +318,7 @@ int FlipNetworkTransaction::DoInitConnection() { |
port = 443; |
resolve_info = HostResolver::RequestInfo(host, port); |
#ifndef USE_MULTIPLE_CONNECTIONS |
- flip_ = FlipSession::GetFlipSession(resolve_info, session_); |
+ flip_ = session_->flip_session_pool()->Get(resolve_info, session_); |
#endif // USE_MULTIPLE_CONNECTIONS |
#endif // DIVERT_URLS_TO_TEST_SERVER |