| Index: content/common/fileapi/file_system_messages.h
|
| diff --git a/content/common/fileapi/file_system_messages.h b/content/common/fileapi/file_system_messages.h
|
| index ee25545924b5e2cadb835fbd02891c2aff92d166..8ba953d8bf4b8973ae62d6f300d3373158bba1f3 100644
|
| --- a/content/common/fileapi/file_system_messages.h
|
| +++ b/content/common/fileapi/file_system_messages.h
|
| @@ -5,16 +5,16 @@
|
| // IPC messages for the file system.
|
| // Multiply-included message file, hence no include guard.
|
|
|
| -#include "base/files/file_util_proxy.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "ipc/ipc_message_macros.h"
|
| #include "ipc/ipc_platform_file.h"
|
| +#include "webkit/fileapi/directory_entry.h"
|
| #include "webkit/fileapi/file_system_types.h"
|
| #include "webkit/quota/quota_types.h"
|
|
|
| #define IPC_MESSAGE_START FileSystemMsgStart
|
|
|
| -IPC_STRUCT_TRAITS_BEGIN(base::FileUtilProxy::Entry)
|
| +IPC_STRUCT_TRAITS_BEGIN(fileapi::DirectoryEntry)
|
| IPC_STRUCT_TRAITS_MEMBER(name)
|
| IPC_STRUCT_TRAITS_MEMBER(is_directory)
|
| IPC_STRUCT_TRAITS_END()
|
| @@ -43,7 +43,7 @@ IPC_MESSAGE_CONTROL3(FileSystemMsg_DidCreateSnapshotFile,
|
| base::FilePath /* true platform path */)
|
| IPC_MESSAGE_CONTROL3(FileSystemMsg_DidReadDirectory,
|
| int /* request_id */,
|
| - std::vector<base::FileUtilProxy::Entry> /* entries */,
|
| + std::vector<fileapi::DirectoryEntry> /* entries */,
|
| bool /* has_more */)
|
| IPC_MESSAGE_CONTROL3(FileSystemMsg_DidWrite,
|
| int /* request_id */,
|
|
|