| Index: net/disk_cache/blockfile/index_table_v3.h
|
| diff --git a/net/disk_cache/blockfile/index_table_v3.h b/net/disk_cache/blockfile/index_table_v3.h
|
| index 598aeecf8a7cb72251b1d42f4215393e4ff15867..02a7cf2ec3ad20da1f798592ac2ec38dc9a11f88 100644
|
| --- a/net/disk_cache/blockfile/index_table_v3.h
|
| +++ b/net/disk_cache/blockfile/index_table_v3.h
|
| @@ -116,7 +116,10 @@ struct NET_EXPORT_PRIVATE EntrySet {
|
|
|
| // A given entity referenced by the index table is uniquely identified by the
|
| // combination of hash and address.
|
| -struct CellInfo { uint32 hash; Addr address; };
|
| +struct CellInfo {
|
| + uint32 hash;
|
| + Addr address;
|
| +};
|
| typedef std::vector<CellInfo> CellList;
|
|
|
| // An index iterator is used to get a group of cells that share the same
|
| @@ -240,15 +243,19 @@ class NET_EXPORT_PRIVATE IndexTable {
|
| IndexIterator* no_use,
|
| IndexIterator* low_use,
|
| IndexIterator* high_use);
|
| - void UpdateFromBucket(IndexBucket* bucket, int bucket_hash,
|
| + void UpdateFromBucket(IndexBucket* bucket,
|
| + int bucket_hash,
|
| int limit_time,
|
| IndexIterator* no_use,
|
| IndexIterator* low_use,
|
| IndexIterator* high_use);
|
| void MoveCells(IndexBucket* old_extra_table);
|
| - void MoveSingleCell(IndexCell* current_cell, int cell_num,
|
| - int main_table_index, bool growing);
|
| - void HandleMisplacedCell(IndexCell* current_cell, int cell_num,
|
| + void MoveSingleCell(IndexCell* current_cell,
|
| + int cell_num,
|
| + int main_table_index,
|
| + bool growing);
|
| + void HandleMisplacedCell(IndexCell* current_cell,
|
| + int cell_num,
|
| int main_table_index);
|
| void CheckBucketList(int bucket_id);
|
|
|
|
|