diff options
Diffstat (limited to 'content/common/fileapi/file_system_messages.h')
-rw-r--r-- | content/common/fileapi/file_system_messages.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/content/common/fileapi/file_system_messages.h b/content/common/fileapi/file_system_messages.h index ef2f8bb..7eb3ef3 100644 --- a/content/common/fileapi/file_system_messages.h +++ b/content/common/fileapi/file_system_messages.h @@ -10,6 +10,7 @@ #include "ipc/ipc_message_macros.h" #include "ipc/ipc_platform_file.h" #include "webkit/fileapi/file_system_types.h" +#include "webkit/quota/quota_types.h" #define IPC_MESSAGE_START FileSystemMsgStart @@ -19,6 +20,7 @@ IPC_STRUCT_TRAITS_BEGIN(base::FileUtilProxy::Entry) IPC_STRUCT_TRAITS_END() IPC_ENUM_TRAITS(fileapi::FileSystemType) +IPC_ENUM_TRAITS(quota::QuotaLimitType) // File system messages sent from the browser to the child process. @@ -47,9 +49,10 @@ IPC_MESSAGE_CONTROL3(FileSystemMsg_DidWrite, int /* request_id */, int64 /* byte count */, bool /* complete */) -IPC_MESSAGE_CONTROL2(FileSystemMsg_DidOpenFile, +IPC_MESSAGE_CONTROL3(FileSystemMsg_DidOpenFile, int /* request_id */, - IPC::PlatformFileForTransit) + IPC::PlatformFileForTransit, + quota::QuotaLimitType /* quota_policy */) IPC_MESSAGE_CONTROL2(FileSystemMsg_DidFail, int /* request_id */, base::PlatformFileError /* error_code */) |