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

Unified Diff: webkit/fileapi/async_file_util_adapter.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
« no previous file with comments | « webkit/fileapi/async_file_util.h ('k') | webkit/fileapi/directory_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/async_file_util_adapter.cc
diff --git a/webkit/fileapi/async_file_util_adapter.cc b/webkit/fileapi/async_file_util_adapter.cc
index 62fb83579a7a4cfa652741e6f0791ab5a22ab5af..a6c049fee852acffc79d4cd93ec6f89288caaf4f 100644
--- a/webkit/fileapi/async_file_util_adapter.cc
+++ b/webkit/fileapi/async_file_util_adapter.cc
@@ -109,7 +109,7 @@ class ReadDirectoryHelper {
base::FilePath current;
while (!(current = file_enum->Next()).empty()) {
- AsyncFileUtil::Entry entry;
+ DirectoryEntry entry;
entry.is_directory = file_enum->IsDirectory();
entry.name = VirtualPath::BaseName(current).value();
entry.size = file_enum->Size();
@@ -126,7 +126,7 @@ class ReadDirectoryHelper {
private:
base::PlatformFileError error_;
- std::vector<AsyncFileUtil::Entry> entries_;
+ std::vector<DirectoryEntry> entries_;
DISALLOW_COPY_AND_ASSIGN(ReadDirectoryHelper);
};
« no previous file with comments | « webkit/fileapi/async_file_util.h ('k') | webkit/fileapi/directory_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698