diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 22:15:46 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 22:15:46 +0000 |
commit | 0408c755c0c9b65cf199b90eb07c1ba176521ac9 (patch) | |
tree | ea20d6581ea079d5fd12540fd19f8bc59e9d5777 /base/file_util.h | |
parent | 67c88d8a4d99d228411860a1efc4798dd9dd0ffe (diff) | |
download | chromium_src-0408c755c0c9b65cf199b90eb07c1ba176521ac9.zip chromium_src-0408c755c0c9b65cf199b90eb07c1ba176521ac9.tar.gz chromium_src-0408c755c0c9b65cf199b90eb07c1ba176521ac9.tar.bz2 |
Move ComputeDirectorySize to the base namespace.
BUG=
TBR=tfarina
Review URL: https://chromiumcodereview.appspot.com/16950027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/base/file_util.h b/base/file_util.h index ac8649f..2bf46a9 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -37,28 +37,29 @@ #endif namespace base { -class Time; - -// Returns an absolute version of a relative path. Returns an empty path on -// error. On POSIX, this function fails if the path does not exist. This -// function can result in I/O so it can be slow. -BASE_EXPORT FilePath MakeAbsoluteFilePath(const FilePath& input); - -} // namespace base -namespace file_util { +class Time; extern bool g_bug108724_debug; //----------------------------------------------------------------------------- // Functions that involve filesystem access or modification: +// Returns an absolute version of a relative path. Returns an empty path on +// error. On POSIX, this function fails if the path does not exist. This +// function can result in I/O so it can be slow. +BASE_EXPORT FilePath MakeAbsoluteFilePath(const FilePath& input); + // Returns the total number of bytes used by all the files under |root_path|. // 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. -BASE_EXPORT int64 ComputeDirectorySize(const base::FilePath& root_path); +BASE_EXPORT int64 ComputeDirectorySize(const FilePath& root_path); + +} // namespace base + +namespace file_util { // 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 |