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

Unified Diff: webkit/plugins/ppapi/file_callbacks.cc

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/plugins/ppapi/file_callbacks.cc
diff --git a/webkit/plugins/ppapi/file_callbacks.cc b/webkit/plugins/ppapi/file_callbacks.cc
index d75def959d3989c5780c33dc6a7ecdc3a361ce4a..7592ddfc1ad76cabaf069f49623d38bf81ca0b5c 100644
--- a/webkit/plugins/ppapi/file_callbacks.cc
+++ b/webkit/plugins/ppapi/file_callbacks.cc
@@ -91,7 +91,8 @@ void FileCallbacks::DidCreateSnapshotFile(
}
void FileCallbacks::DidReadDirectory(
- const std::vector<base::FileUtilProxy::Entry>& entries, bool has_more) {
+ const std::vector<fileapi::FileSystemOperation::Entry>& entries,
+ bool has_more) {
if (callback_->completed())
return;
@@ -107,7 +108,7 @@ void FileCallbacks::DidReadDirectory(
dir_path += '/';
for (size_t i = 0; i < entries.size(); ++i) {
- const base::FileUtilProxy::Entry& entry = entries[i];
+ const fileapi::FileSystemOperation::Entry& entry = entries[i];
scoped_refptr<PPB_FileRef_Impl> file_ref(PPB_FileRef_Impl::CreateInternal(
read_entries_dir_ref_->pp_instance(),
read_entries_dir_ref_->file_system_resource(),

Powered by Google App Engine
This is Rietveld 408576698