| Index: content/common/fileapi/webfilesystem_callback_dispatcher.cc
|
| diff --git a/content/common/fileapi/webfilesystem_callback_dispatcher.cc b/content/common/fileapi/webfilesystem_callback_dispatcher.cc
|
| index 24926c6f8b41e3c5dc2ca40bfe9e1fbb866d074e..44a1aac9d58fd4606d5c5ffbae0e43bc6d2d531e 100644
|
| --- a/content/common/fileapi/webfilesystem_callback_dispatcher.cc
|
| +++ b/content/common/fileapi/webfilesystem_callback_dispatcher.cc
|
| @@ -7,7 +7,6 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/files/file_util_proxy.h"
|
| #include "base/logging.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "googleurl/src/gurl.h"
|
| @@ -56,7 +55,8 @@ void WebFileSystemCallbackDispatcher::DidCreateSnapshotFile(
|
| }
|
|
|
| void WebFileSystemCallbackDispatcher::DidReadDirectory(
|
| - const std::vector<base::FileUtilProxy::Entry>& entries, bool has_more) {
|
| + const std::vector<fileapi::FileSystemOperation::Entry>& entries,
|
| + bool has_more) {
|
| WebVector<WebFileSystemEntry> file_system_entries(entries.size());
|
| for (size_t i = 0; i < entries.size(); i++) {
|
| file_system_entries[i].name =
|
|
|