Index: content/common/quota_messages.h |
diff --git a/content/common/quota_messages.h b/content/common/quota_messages.h |
index 022633de533da5f4a62e1c351d13d6011c5af4b1..783503e38727f3a4aa983f0c5cbf413c6566bdfe 100644 |
--- a/content/common/quota_messages.h |
+++ b/content/common/quota_messages.h |
@@ -14,6 +14,15 @@ |
IPC_ENUM_TRAITS(quota::StorageType) |
IPC_ENUM_TRAITS(quota::QuotaStatusCode) |
+IPC_STRUCT_TRAITS_BEGIN(quota::RequestStorageQuotaParams) |
+ IPC_STRUCT_TRAITS_MEMBER(render_view_id) |
+ IPC_STRUCT_TRAITS_MEMBER(request_id) |
+ IPC_STRUCT_TRAITS_MEMBER(origin_url) |
+ IPC_STRUCT_TRAITS_MEMBER(storage_type) |
+ IPC_STRUCT_TRAITS_MEMBER(requested_size) |
+ IPC_STRUCT_TRAITS_MEMBER(user_gesture) |
+IPC_STRUCT_TRAITS_END() |
+ |
// Quota messages sent from the browser to the child process. |
IPC_MESSAGE_CONTROL3(QuotaMsg_DidGrantStorageQuota, |
@@ -37,9 +46,5 @@ IPC_MESSAGE_CONTROL3(QuotaHostMsg_QueryStorageUsageAndQuota, |
GURL /* origin_url */, |
quota::StorageType /* type */) |
-IPC_MESSAGE_CONTROL5(QuotaHostMsg_RequestStorageQuota, |
- int /* render_view_id */, |
- int /* request_id */, |
- GURL /* origin_url */, |
- quota::StorageType /* type */, |
- uint64 /* requested_size */) |
+IPC_MESSAGE_CONTROL1(QuotaHostMsg_RequestStorageQuota, |
+ quota::RequestStorageQuotaParams) |