Index: net/disk_cache/rankings.h |
diff --git a/net/disk_cache/rankings.h b/net/disk_cache/rankings.h |
index 6066fbf4fd4a7fa711e7ad1e78b53920fc0fcb08..baf777ee50eac97dff1d98053427e2852d6420a9 100644 |
--- a/net/disk_cache/rankings.h |
+++ b/net/disk_cache/rankings.h |
@@ -93,11 +93,12 @@ class Rankings { |
// If we have multiple lists, we have to iterate through all at the same time. |
// This structure keeps track of where we are on the iteration. |
struct Iterator { |
+ explicit Iterator(Rankings* rankings); |
+ ~Iterator(); |
+ |
List list; // Which entry was returned to the user. |
CacheRankingsBlock* nodes[3]; // Nodes on the first three lists. |
Rankings* my_rankings; |
- explicit Iterator(Rankings* rankings); |
- ~Iterator(); |
}; |
Rankings(); |