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

Unified Diff: chrome/browser/chromeos/drive/resource_entry_conversion.h

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/resource_entry_conversion.h
diff --git a/chrome/browser/chromeos/drive/resource_entry_conversion.h b/chrome/browser/chromeos/drive/resource_entry_conversion.h
index 56607b9978ed0919f24552f381dfa0c1b1c958fb..73fe53cd5b2070480e0f7ff132ae6740d41d1d26 100644
--- a/chrome/browser/chromeos/drive/resource_entry_conversion.h
+++ b/chrome/browser/chromeos/drive/resource_entry_conversion.h
@@ -7,9 +7,7 @@
#include <string>
-namespace base {
-struct PlatformFileInfo;
-}
+#include "base/files/file.h"
namespace google_apis {
class ResourceEntry;
@@ -38,12 +36,12 @@ bool ConvertToResourceEntry(const google_apis::ResourceEntry& input,
std::string* out_parent_resource_id);
// Converts the resource entry to the platform file info.
-void ConvertResourceEntryToPlatformFileInfo(const ResourceEntry& entry,
- base::PlatformFileInfo* file_info);
+void ConvertResourceEntryToFileInfo(const ResourceEntry& entry,
+ base::File::Info* file_info);
// Converts the platform file info and sets it to the .file_info field of
// the resource entry.
-void SetPlatformFileInfoToResourceEntry(const base::PlatformFileInfo& file_info,
+void SetPlatformFileInfoToResourceEntry(const base::File::Info& file_info,
ResourceEntry* entry);
} // namespace drive
« no previous file with comments | « chrome/browser/chromeos/drive/local_file_reader.cc ('k') | chrome/browser/chromeos/drive/resource_entry_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698