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

Unified Diff: base/file_util.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/file_util.h ('k') | base/file_util_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_util.cc
diff --git a/base/file_util.cc b/base/file_util.cc
index 119863639515dc6edc5f2b4bde7e3ac8495189fb..6140ceae28ab5980395ce2c0db96eeed76388e0f 100644
--- a/base/file_util.cc
+++ b/base/file_util.cc
@@ -167,7 +167,7 @@ bool CreateDirectory(const FilePath& full_path) {
bool GetFileSize(const FilePath& file_path, int64* file_size) {
PlatformFileInfo info;
- if (!file_util::GetFileInfo(file_path, &info))
+ if (!GetFileInfo(file_path, &info))
return false;
*file_size = info.size;
return true;
« no previous file with comments | « base/file_util.h ('k') | base/file_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698