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

Unified Diff: webkit/plugins/ppapi/plugin_delegate.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/webkit_fileapi.gypi ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_delegate.h
diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
index ccd9e3fdbba96c8dc0b3c2492a4861585092398d..714c8830daec9408c33f250b440d2d2e628d86e4 100644
--- a/webkit/plugins/ppapi/plugin_delegate.h
+++ b/webkit/plugins/ppapi/plugin_delegate.h
@@ -9,7 +9,6 @@
#include <vector>
#include "base/callback.h"
-#include "base/files/file_util_proxy.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop_proxy.h"
#include "base/platform_file.h"
@@ -54,6 +53,10 @@ class MessageLoopProxy;
class Time;
}
+namespace fileapi {
+struct DirectoryEntry;
+}
+
namespace gfx {
class Point;
}
@@ -93,6 +96,7 @@ class NetworkListObserver;
} // namespace webkit_glue
namespace webkit {
+
namespace ppapi {
class FileIO;
@@ -501,7 +505,7 @@ class PluginDelegate {
// Callback typedefs for FileSystem related methods.
typedef base::Callback<void (base::PlatformFileError)> StatusCallback;
typedef base::Callback<void(
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<fileapi::DirectoryEntry>& entries,
bool has_more)> ReadDirectoryCallback;
typedef base::Callback<void(
const base::PlatformFileInfo& file_info,
« no previous file with comments | « webkit/fileapi/webkit_fileapi.gypi ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698