Index: net/disk_cache/mem_entry_impl.h |
=================================================================== |
--- net/disk_cache/mem_entry_impl.h (revision 24829) |
+++ net/disk_cache/mem_entry_impl.h (working copy) |
@@ -142,19 +142,18 @@ |
int32 data_size_[NUM_STREAMS]; |
int ref_count_; |
- MemEntryImpl* next_; // Pointers for the LRU list. |
+ int child_id_; // The ID of a child entry. |
+ int child_first_pos_; // The position of the first byte in a child |
+ // entry. |
+ MemEntryImpl* next_; // Pointers for the LRU list. |
MemEntryImpl* prev_; |
- MemEntryImpl* parent_; // Pointer to the parent entry. |
+ MemEntryImpl* parent_; // Pointer to the parent entry. |
scoped_ptr<EntryMap> children_; |
- int child_id_; // The ID of a child entry. |
- int child_first_pos_; // The position of the first byte in a child |
- // entry. |
- |
- base::Time last_modified_; // LRU information. |
+ base::Time last_modified_; // LRU information. |
base::Time last_used_; |
- MemBackendImpl* backend_; // Back pointer to the cache. |
- bool doomed_; // True if this entry was removed from the cache. |
+ MemBackendImpl* backend_; // Back pointer to the cache. |
+ bool doomed_; // True if this entry was removed from the cache. |
DISALLOW_EVIL_CONSTRUCTORS(MemEntryImpl); |
}; |