| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ | 5 #ifndef NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ |
| 6 #define NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ | 6 #define NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "net/disk_cache/blockfile/disk_format_v3.h" | 10 #include "net/disk_cache/blockfile/disk_format_v3.h" |
| 11 #include "net/disk_cache/blockfile/index_table_v3.h" | 11 #include "net/disk_cache/blockfile/index_table_v3.h" |
| 12 | 12 |
| 13 namespace disk_cache { | 13 namespace disk_cache { |
| 14 | 14 |
| 15 class BackendImplV3; | 15 class BackendImplV3; |
| 16 class CacheRankingsBlock; | 16 class CacheRankingsBlock; |
| 17 class EntryImplV3; | 17 class EntryImplV3; |
| 18 | 18 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 bool init_; | 69 bool init_; |
| 70 bool test_mode_; | 70 bool test_mode_; |
| 71 base::WeakPtrFactory<EvictionV3> ptr_factory_; | 71 base::WeakPtrFactory<EvictionV3> ptr_factory_; |
| 72 | 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(EvictionV3); | 73 DISALLOW_COPY_AND_ASSIGN(EvictionV3); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace disk_cache | 76 } // namespace disk_cache |
| 77 | 77 |
| 78 #endif // NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ | 78 #endif // NET_DISK_CACHE_BLOCKFILE_EVICTION_V3_H_ |
| OLD | NEW |