OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // See net/disk_cache/disk_cache.h for the public interface. | 5 // See net/disk_cache/disk_cache.h for the public interface. |
6 | 6 |
7 #ifndef NET_DISK_CACHE_MEM_RANKINGS_H__ | 7 #ifndef NET_DISK_CACHE_MEM_RANKINGS_H__ |
8 #define NET_DISK_CACHE_MEM_RANKINGS_H__ | 8 #define NET_DISK_CACHE_MEM_RANKINGS_H__ |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
(...skipping 17 matching lines...) Expand all Loading... |
29 void UpdateRank(MemEntryImpl* node); | 29 void UpdateRank(MemEntryImpl* node); |
30 | 30 |
31 // Iterates through the list. | 31 // Iterates through the list. |
32 MemEntryImpl* GetNext(MemEntryImpl* node); | 32 MemEntryImpl* GetNext(MemEntryImpl* node); |
33 MemEntryImpl* GetPrev(MemEntryImpl* node); | 33 MemEntryImpl* GetPrev(MemEntryImpl* node); |
34 | 34 |
35 private: | 35 private: |
36 MemEntryImpl* head_; | 36 MemEntryImpl* head_; |
37 MemEntryImpl* tail_; | 37 MemEntryImpl* tail_; |
38 | 38 |
39 DISALLOW_EVIL_CONSTRUCTORS(MemRankings); | 39 DISALLOW_COPY_AND_ASSIGN(MemRankings); |
40 }; | 40 }; |
41 | 41 |
42 } // namespace disk_cache | 42 } // namespace disk_cache |
43 | 43 |
44 #endif // NET_DISK_CACHE_MEM_RANKINGS_H__ | 44 #endif // NET_DISK_CACHE_MEM_RANKINGS_H__ |
OLD | NEW |