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_V3_EVICTION_V3_H_ | 5 #ifndef NET_DISK_CACHE_V3_EVICTION_H_ |
rvargas (doing something else)
2014/02/06 04:21:23
needs v3 at the end
gavinp
2014/02/09 15:13:35
Done.
| |
6 #define NET_DISK_CACHE_V3_EVICTION_V3_H_ | 6 #define NET_DISK_CACHE_V3_EVICTION_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "net/disk_cache/v3/disk_format_v3.h" | 10 #include "net/disk_cache/v3/disk_format_v3.h" |
11 #include "net/disk_cache/v3/index_table.h" | 11 #include "net/disk_cache/v3/index_table.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; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 bool delay_trim_; | 68 bool delay_trim_; |
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_V3_EVICTION_V3_H_ | 78 #endif // NET_DISK_CACHE_V3_EVICTION_H_ |
OLD | NEW |