| Index: webkit/tools/test_shell/simple_file_system.cc
|
| diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
|
| index 8b23259562d99ca06d35ea74ec58fda221e2cc74..4c4b83718bf1a98b922f8d492786c7fb15ddf688 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.cc
|
| +++ b/webkit/tools/test_shell/simple_file_system.cc
|
| @@ -343,11 +343,11 @@ void SimpleFileSystem::DidGetMetadata(WebFileSystemCallbacks* callbacks,
|
| void SimpleFileSystem::DidReadDirectory(
|
| WebFileSystemCallbacks* callbacks,
|
| base::PlatformFileError result,
|
| - const std::vector<base::FileUtilProxy::Entry>& entries,
|
| + const std::vector<FileSystemOperation::Entry>& entries,
|
| bool has_more) {
|
| if (result == base::PLATFORM_FILE_OK) {
|
| std::vector<WebFileSystemEntry> web_entries_vector;
|
| - for (std::vector<base::FileUtilProxy::Entry>::const_iterator it =
|
| + for (std::vector<FileSystemOperation::Entry>::const_iterator it =
|
| entries.begin(); it != entries.end(); ++it) {
|
| WebFileSystemEntry entry;
|
| entry.name = webkit_base::FilePathStringToWebString(it->name);
|
|
|