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

Unified Diff: webkit/fileapi/file_system_operation.h

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/file_system_dir_url_request_job.cc ('k') | webkit/fileapi/isolated_file_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index 35e0a502da78901746e767c991db668289694818..442f7dffbbf18c943b8e8be97377a285bce95243 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -7,9 +7,11 @@
#include <vector>
-#include "base/files/file_util_proxy.h"
+#include "base/callback.h"
+#include "base/files/file_path.h"
#include "base/platform_file.h"
#include "base/process.h"
+#include "webkit/fileapi/directory_entry.h"
namespace base {
class Time;
@@ -76,7 +78,7 @@ class FileSystemOperation {
base::ProcessHandle peer_handle)> OpenFileCallback;
// Used for ReadDirectoryCallback.
- typedef std::vector<base::FileUtilProxy::Entry> FileEntryList;
+ typedef std::vector<DirectoryEntry> FileEntryList;
// Used for ReadDirectory(). |result| is the return code of the operation,
// |file_list| is the list of files read, and |has_more| is true if some files
« no previous file with comments | « webkit/fileapi/file_system_dir_url_request_job.cc ('k') | webkit/fileapi/isolated_file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698