Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: net/disk_cache/rankings.h

Issue 12880: Disk cache: Add support for an extra data stream for each cache entry.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/disk_cache/rankings.h
===================================================================
--- net/disk_cache/rankings.h (revision 6334)
+++ net/disk_cache/rankings.h (working copy)
@@ -4,8 +4,8 @@
// See net/disk_cache/disk_cache.h for the public interface.
-#ifndef NET_DISK_CACHE_RANKINGS_H__
-#define NET_DISK_CACHE_RANKINGS_H__
+#ifndef NET_DISK_CACHE_RANKINGS_H_
+#define NET_DISK_CACHE_RANKINGS_H_
#include <list>
@@ -141,14 +141,14 @@
bool init_;
Addr head_;
Addr tail_;
- BlockFileHeader* header_; // Header of the block-file used to store rankings.
BackendImpl* backend_;
+ LruData* control_data_; // Data related to the LRU lists.
Nicolas Sylvain 2008/12/04 18:52:28 I think you have too many spaces here.
IteratorList iterators_;
- DISALLOW_EVIL_CONSTRUCTORS(Rankings);
+ DISALLOW_COPY_AND_ASSIGN(Rankings);
};
} // namespace disk_cache
-#endif // NET_DISK_CACHE_RANKINGS_H__
+#endif // NET_DISK_CACHE_RANKINGS_H_

Powered by Google App Engine
This is Rietveld 408576698