| 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(),
|
|
|