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

Unified Diff: base/file_util.cc

Issue 3347005: Moving file_util::FileInfo to base::PlatformFileInfo, and adding the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: base/file_util.cc
===================================================================
--- base/file_util.cc (revision 58317)
+++ base/file_util.cc (working copy)
@@ -185,7 +185,7 @@
}
bool GetFileSize(const FilePath& file_path, int64* file_size) {
- FileInfo info;
+ base::PlatformFileInfo info;
if (!GetFileInfo(file_path, &info))
return false;
*file_size = info.size;
« no previous file with comments | « base/file_util.h ('k') | base/file_util_posix.cc » ('j') | base/platform_file.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698