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

Unified Diff: webkit/fileapi/local_file_system_operation.cc

Issue 14671020: FileAPI: Copy base::FileUtilProxy::Entry to fileapi::DirectoryEntry (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: webkit/fileapi/local_file_system_operation.cc
diff --git a/webkit/fileapi/local_file_system_operation.cc b/webkit/fileapi/local_file_system_operation.cc
index 27fc1f82c821b93e76054ad49699f9004fdaf23d..7eecc523736117bf129961a8123e6badc01d0947 100644
--- a/webkit/fileapi/local_file_system_operation.cc
+++ b/webkit/fileapi/local_file_system_operation.cc
@@ -241,7 +241,7 @@ void LocalFileSystemOperation::ReadDirectory(
base::PlatformFileError result = SetUp(url, OPERATION_MODE_READ);
if (result != base::PLATFORM_FILE_OK) {
- callback.Run(result, std::vector<base::FileUtilProxy::Entry>(), false);
+ callback.Run(result, std::vector<FileSystemOperation::Entry>(), false);
delete this;
return;
}
@@ -786,7 +786,7 @@ void LocalFileSystemOperation::DidGetMetadata(
void LocalFileSystemOperation::DidReadDirectory(
const ReadDirectoryCallback& callback,
base::PlatformFileError rv,
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<FileSystemOperation::Entry>& entries,
bool has_more) {
callback.Run(rv, entries, has_more);
}

Powered by Google App Engine
This is Rietveld 408576698