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

Unified Diff: chrome/browser/chromeos/drive/file_system.cc

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 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: chrome/browser/chromeos/drive/file_system.cc
diff --git a/chrome/browser/chromeos/drive/file_system.cc b/chrome/browser/chromeos/drive/file_system.cc
index a617b56aba950332d3da92c01e07a82567eef9cd..d2957c836b9b2cab47982af4d977bdf5e76fcb24 100644
--- a/chrome/browser/chromeos/drive/file_system.cc
+++ b/chrome/browser/chromeos/drive/file_system.cc
@@ -74,7 +74,7 @@ FileError GetLocallyStoredResourceEntry(
return error;
// TODO(rvargas): Convert this code to use base::File::Info.
- base::PlatformFileInfo file_info;
+ base::File::Info file_info;
if (!base::GetFileInfo(local_cache_path,
reinterpret_cast<base::File::Info*>(&file_info))) {
return FILE_ERROR_NOT_FOUND;
« no previous file with comments | « chrome/browser/chromeos/drive/file_errors.cc ('k') | chrome/browser/chromeos/drive/file_system/download_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698