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

Unified Diff: content/common/fileapi/webfilesystem_callback_adapters.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
Index: content/common/fileapi/webfilesystem_callback_adapters.h
diff --git a/content/common/fileapi/webfilesystem_callback_adapters.h b/content/common/fileapi/webfilesystem_callback_adapters.h
index 8f2c69918a5e05787409d6093169e086b7c667a5..5f855ff444bf8b54eef2045ec6af92d87fcfa79d 100644
--- a/content/common/fileapi/webfilesystem_callback_adapters.h
+++ b/content/common/fileapi/webfilesystem_callback_adapters.h
@@ -6,11 +6,14 @@
#define CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_ADAPTERS_H_
#include "base/basictypes.h"
-#include "base/files/file_util_proxy.h"
#include "base/platform_file.h"
class GURL;
+namespace fileapi {
+struct DirectoryEntry;
+}
+
namespace WebKit {
class WebFileSystemCallbacks;
}
@@ -33,7 +36,7 @@ void CreateSnapshotFileCallbackAdapter(
void ReadDirectoryCallbackAdapater(
WebKit::WebFileSystemCallbacks* callbacks,
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<fileapi::DirectoryEntry>& entries,
bool has_more);
void OpenFileSystemCallbackAdapter(
« no previous file with comments | « content/common/fileapi/file_system_messages.h ('k') | content/common/fileapi/webfilesystem_callback_adapters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698