diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 22:53:43 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-11 22:53:43 +0000 |
commit | a04876b90cb1e55881844ff22a74e06bf4641071 (patch) | |
tree | 2188de20f7b57b371c045232e1b888bc676afaf6 /base/file_util.h | |
parent | 88fdf6604b4136a8d914703a10869951f846d3c1 (diff) | |
download | chromium_src-a04876b90cb1e55881844ff22a74e06bf4641071.zip chromium_src-a04876b90cb1e55881844ff22a74e06bf4641071.tar.gz chromium_src-a04876b90cb1e55881844ff22a74e06bf4641071.tar.bz2 |
Add histograms to track the size of the profile data.
BUG=16705
TEST=FileUtilTest.FileAndDirectorySize
Review URL: http://codereview.chromium.org/2778006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/base/file_util.h b/base/file_util.h index 04afdec..b2e176b 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -82,6 +82,15 @@ int CountFilesCreatedAfter(const FilePath& path, // particularly speedy in any platform. int64 ComputeDirectorySize(const FilePath& root_path); +// Returns the total number of bytes used by all files matching the provided +// |pattern|, on this |directory| (without recursion). If the path does not +// exist the function returns 0. +// +// This function is implemented using the FileEnumerator class so it is not +// particularly speedy in any platform. +int64 ComputeFilesSize(const FilePath& directory, + const FilePath::StringType& pattern); + // Deletes the given path, whether it's a file or a directory. // If it's a directory, it's perfectly happy to delete all of the // directory's contents. Passing true to recursive deletes |