OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/flip/flip_session_pool.h" | 5 #include "net/flip/flip_session_pool.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "net/flip/flip_session.h" | 8 #include "net/flip/flip_session.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 list->pop_front(); | 90 list->pop_front(); |
91 session->CloseAllStreams(net::OK); | 91 session->CloseAllStreams(net::OK); |
92 session->Release(); | 92 session->Release(); |
93 } | 93 } |
94 delete list; | 94 delete list; |
95 } | 95 } |
96 } | 96 } |
97 | 97 |
98 } // namespace net | 98 } // namespace net |
99 | 99 |
OLD | NEW |