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

Side by Side Diff: net/disk_cache/v3/eviction_v3.h

Issue 121643003: Reorganize net/disk_cache into backend specific directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: #define fixes Created 6 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698