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

Unified Diff: webkit/fileapi/file_system_dir_url_request_job.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/directory_entry.h ('k') | webkit/fileapi/file_system_dir_url_request_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_dir_url_request_job.h
diff --git a/webkit/fileapi/file_system_dir_url_request_job.h b/webkit/fileapi/file_system_dir_url_request_job.h
index 7a671e8f2965e7d904d1bf2b2d238894734d2a08..81c3ff09e516e5d29547c7a374084c5f656395f1 100644
--- a/webkit/fileapi/file_system_dir_url_request_job.h
+++ b/webkit/fileapi/file_system_dir_url_request_job.h
@@ -9,7 +9,6 @@
#include <vector>
#include "base/files/file_path.h"
-#include "base/files/file_util_proxy.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop_proxy.h"
#include "base/platform_file.h"
@@ -18,8 +17,10 @@
#include "webkit/storage/webkit_storage_export.h"
namespace fileapi {
+
class FileSystemContext;
class FileSystemOperation;
+struct DirectoryEntry;
// A request job that handles reading filesystem: URLs for directories.
class WEBKIT_STORAGE_EXPORT_PRIVATE FileSystemDirURLRequestJob
@@ -50,7 +51,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE FileSystemDirURLRequestJob
void StartAsync();
void DidReadDirectory(base::PlatformFileError result,
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<DirectoryEntry>& entries,
bool has_more);
FileSystemOperation* GetNewOperation(base::PlatformFileError* error_code);
« no previous file with comments | « webkit/fileapi/directory_entry.h ('k') | webkit/fileapi/file_system_dir_url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698