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

Unified Diff: chrome/common/file_system/file_system_dispatcher.h

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: chrome/common/file_system/file_system_dispatcher.h
===================================================================
--- chrome/common/file_system/file_system_dispatcher.h (revision 58317)
+++ chrome/common/file_system/file_system_dispatcher.h (working copy)
@@ -21,8 +21,8 @@
struct WebFileSystemEntry;
}
-namespace file_util {
-struct FileInfo;
+namespace base {
+struct PlatformFileInfo;
}
struct ViewMsg_FileSystem_DidReadDirectory_Params;
@@ -68,7 +68,7 @@
void DidSucceed(int request_id);
void DidReadMetadata(
int request_id,
- const file_util::FileInfo& file_info);
+ const base::PlatformFileInfo& file_info);
void DidReadDirectory(
const ViewMsg_FileSystem_DidReadDirectory_Params& params);
void DidFail(

Powered by Google App Engine
This is Rietveld 408576698