diff options
author | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-03 02:28:37 +0000 |
---|---|---|
committer | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-03 02:28:37 +0000 |
commit | 2f0193c279b1b40a82a6ad027ec9468272eb25b2 (patch) | |
tree | 9d2e2f5bcf09837a1189723567906fb8de45c7e2 /chrome/common/file_system | |
parent | 4c56ef5fbed46794f2b16b9f8ed88ac179d65309 (diff) | |
download | chromium_src-2f0193c279b1b40a82a6ad027ec9468272eb25b2.zip chromium_src-2f0193c279b1b40a82a6ad027ec9468272eb25b2.tar.gz chromium_src-2f0193c279b1b40a82a6ad027ec9468272eb25b2.tar.bz2 |
Moving file_util::FileInfo to base::PlatformFileInfo, and adding the
last_accessed and creation_time fields.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3347005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58454 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/file_system')
-rw-r--r-- | chrome/common/file_system/file_system_dispatcher.cc | 2 | ||||
-rw-r--r-- | chrome/common/file_system/file_system_dispatcher.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/file_system/file_system_dispatcher.cc b/chrome/common/file_system/file_system_dispatcher.cc index f7022e1..d28e244 100644 --- a/chrome/common/file_system/file_system_dispatcher.cc +++ b/chrome/common/file_system/file_system_dispatcher.cc @@ -110,7 +110,7 @@ void FileSystemDispatcher::DidSucceed(int request_id) { } void FileSystemDispatcher::DidReadMetadata(int request_id, - const file_util::FileInfo& file_info) { + const base::PlatformFileInfo& file_info) { WebFileSystemCallbacks* callbacks = callbacks_.Lookup(request_id); DCHECK(callbacks); callbacks_.Remove(request_id); diff --git a/chrome/common/file_system/file_system_dispatcher.h b/chrome/common/file_system/file_system_dispatcher.h index 70855d1..6fb9db5 100644 --- a/chrome/common/file_system/file_system_dispatcher.h +++ b/chrome/common/file_system/file_system_dispatcher.h @@ -21,8 +21,8 @@ class WebFileSystemCallbacks; struct WebFileSystemEntry; } -namespace file_util { -struct FileInfo; +namespace base { +struct PlatformFileInfo; } struct ViewMsg_FileSystem_DidReadDirectory_Params; @@ -68,7 +68,7 @@ class FileSystemDispatcher { 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( |