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

Unified Diff: webkit/fileapi/file_system_callback_dispatcher.h

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/file_system_callback_dispatcher.h
diff --git a/webkit/fileapi/file_system_callback_dispatcher.h b/webkit/fileapi/file_system_callback_dispatcher.h
index 14e4196fed14ac44cc99314a678a59f426fc330c..6e7921e80829312fec65b43fa0f08dca07f251eb 100644
--- a/webkit/fileapi/file_system_callback_dispatcher.h
+++ b/webkit/fileapi/file_system_callback_dispatcher.h
@@ -8,9 +8,9 @@
#include <string>
#include <vector>
-#include "base/files/file_util_proxy.h"
#include "base/platform_file.h"
#include "base/process.h"
+#include "webkit/fileapi/file_system_operation.h"
#include "webkit/quota/quota_types.h"
#include "webkit/storage/webkit_storage_export.h"
@@ -47,7 +47,7 @@ class WEBKIT_STORAGE_EXPORT FileSystemCallbackDispatcher {
// all contents (the subsets reported in any two calls are disjoint), and
// |has_more| will be true, except for the last chunk.
virtual void DidReadDirectory(
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<FileSystemOperation::Entry>& entries,
bool has_more) = 0;
// Callback for opening a file system. Called with a name and root path for

Powered by Google App Engine
This is Rietveld 408576698