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

Side by Side Diff: net/disk_cache/blockfile/rankings.cc

Issue 121643003: Reorganize net/disk_cache into backend specific directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to upstream 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 #include "net/disk_cache/rankings.h" 5 #include "net/disk_cache/blockfile/rankings.h"
6 6
7 #include "base/metrics/histogram.h" 7 #include "base/metrics/histogram.h"
8 #include "net/disk_cache/backend_impl.h" 8 #include "net/disk_cache/blockfile/backend_impl.h"
9 #include "net/disk_cache/disk_format.h" 9 #include "net/disk_cache/blockfile/disk_format.h"
10 #include "net/disk_cache/entry_impl.h" 10 #include "net/disk_cache/blockfile/entry_impl.h"
11 #include "net/disk_cache/errors.h" 11 #include "net/disk_cache/blockfile/errors.h"
12 #include "net/disk_cache/stress_support.h" 12 #include "net/disk_cache/blockfile/stress_support.h"
13 13
14 #define CACHE_HISTOGRAM_MACROS_BACKEND_IMPL_OBJ backend_ 14 #define CACHE_HISTOGRAM_MACROS_BACKEND_IMPL_OBJ backend_
15 #include "net/disk_cache/histogram_macros.h" 15 #include "net/disk_cache/blockfile/histogram_macros.h"
16 16
17 using base::Time; 17 using base::Time;
18 using base::TimeTicks; 18 using base::TimeTicks;
19 19
20 namespace disk_cache { 20 namespace disk_cache {
21 // This is used by crash_cache.exe to generate unit test files. 21 // This is used by crash_cache.exe to generate unit test files.
22 NET_EXPORT_PRIVATE RankCrashes g_rankings_crash = NO_CRASH; 22 NET_EXPORT_PRIVATE RankCrashes g_rankings_crash = NO_CRASH;
23 } 23 }
24 24
25 namespace { 25 namespace {
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 void Rankings::DecrementCounter(List list) { 915 void Rankings::DecrementCounter(List list) {
916 if (!count_lists_) 916 if (!count_lists_)
917 return; 917 return;
918 918
919 DCHECK(control_data_->sizes[list] > 0); 919 DCHECK(control_data_->sizes[list] > 0);
920 if (control_data_->sizes[list] > 0) 920 if (control_data_->sizes[list] > 0)
921 control_data_->sizes[list]--; 921 control_data_->sizes[list]--;
922 } 922 }
923 923
924 } // namespace disk_cache 924 } // namespace disk_cache
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698