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

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: fix win build and remove base/ change 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..d4d54c5ae5f6c18b003fe0f418e98067c5330fe7 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<DirectoryEntry>(), 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<DirectoryEntry>& entries,
bool has_more) {
callback.Run(rv, entries, has_more);
}
« no previous file with comments | « webkit/fileapi/local_file_system_operation.h ('k') | webkit/fileapi/local_file_system_operation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698