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

Side by Side Diff: net/disk_cache/backend_impl.cc

Issue 140893013: Clean up dependencies for disk_cache histogram_macros.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: spelling 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/backend_impl.h" 5 #include "net/disk_cache/backend_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 10 matching lines...) Expand all
21 #include "base/time/time.h" 21 #include "base/time/time.h"
22 #include "base/timer/timer.h" 22 #include "base/timer/timer.h"
23 #include "net/base/net_errors.h" 23 #include "net/base/net_errors.h"
24 #include "net/disk_cache/cache_util.h" 24 #include "net/disk_cache/cache_util.h"
25 #include "net/disk_cache/disk_format.h" 25 #include "net/disk_cache/disk_format.h"
26 #include "net/disk_cache/entry_impl.h" 26 #include "net/disk_cache/entry_impl.h"
27 #include "net/disk_cache/errors.h" 27 #include "net/disk_cache/errors.h"
28 #include "net/disk_cache/experiments.h" 28 #include "net/disk_cache/experiments.h"
29 #include "net/disk_cache/file.h" 29 #include "net/disk_cache/file.h"
30 30
31 // This has to be defined before including histogram_macros.h from this file. 31 // Define BLOCKFILE_BACKEND_IMPL_OBJ to be a disk_cache::BackendImpl* in order
rvargas (doing something else) 2014/02/11 19:41:48 nit: I much prefer the original comment. It explai
32 #define NET_DISK_CACHE_BACKEND_IMPL_CC_ 32 // to use the CACHE_UMA histogram macro.
33 #define BLOCKFILE_BACKEND_IMPL_OBJ this
33 #include "net/disk_cache/histogram_macros.h" 34 #include "net/disk_cache/histogram_macros.h"
34 35
35 using base::Time; 36 using base::Time;
36 using base::TimeDelta; 37 using base::TimeDelta;
37 using base::TimeTicks; 38 using base::TimeTicks;
38 39
39 namespace { 40 namespace {
40 41
41 const char* kIndexName = "index"; 42 const char* kIndexName = "index";
42 43
(...skipping 2048 matching lines...) Expand 10 before | Expand all | Expand 10 after
2091 if (total_memory > kMaxBuffersSize || total_memory <= 0) 2092 if (total_memory > kMaxBuffersSize || total_memory <= 0)
2092 total_memory = kMaxBuffersSize; 2093 total_memory = kMaxBuffersSize;
2093 2094
2094 done = true; 2095 done = true;
2095 } 2096 }
2096 2097
2097 return static_cast<int>(total_memory); 2098 return static_cast<int>(total_memory);
2098 } 2099 }
2099 2100
2100 } // namespace disk_cache 2101 } // namespace disk_cache
OLDNEW
« no previous file with comments | « chrome/browser/net/http_pipelining_compatibility_client.cc ('k') | net/disk_cache/backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698