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 #ifndef NET_FLIP_FLIP_SESSION_POOL_H_ | 5 #ifndef NET_FLIP_FLIP_SESSION_POOL_H_ |
6 #define NET_FLIP_FLIP_SESSION_POOL_H_ | 6 #define NET_FLIP_FLIP_SESSION_POOL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <list> | 9 #include <list> |
10 #include <string> | 10 #include <string> |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 static void RemoveSessionList(std::string domain); | 48 static void RemoveSessionList(std::string domain); |
49 | 49 |
50 // This is our weak session pool - one session per domain. | 50 // This is our weak session pool - one session per domain. |
51 static scoped_ptr<FlipSessionsMap> sessions_; | 51 static scoped_ptr<FlipSessionsMap> sessions_; |
52 }; | 52 }; |
53 | 53 |
54 } // namespace net | 54 } // namespace net |
55 | 55 |
56 #endif // NET_FLIP_FLIP_SESSION_POOL_H_ | 56 #endif // NET_FLIP_FLIP_SESSION_POOL_H_ |
57 | 57 |
OLD | NEW |