| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_QUOTA_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_QUOTA_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message file, hence no include guard. | 8 // Multiply-included message file, hence no include guard. |
| 6 | 9 |
| 7 #include <stdint.h> | 10 #include <stdint.h> |
| 8 | 11 |
| 9 #include "content/public/common/storage_quota_params.h" | 12 #include "content/public/common/storage_quota_params.h" |
| 10 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
| 11 #include "storage/common/quota/quota_types.h" | 14 #include "storage/common/quota/quota_types.h" |
| 12 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 13 | 16 |
| 14 #define IPC_MESSAGE_START QuotaMsgStart | 17 #define IPC_MESSAGE_START QuotaMsgStart |
| (...skipping 28 matching lines...) Expand all Loading... |
| 43 | 46 |
| 44 // Quota messages sent from the child process to the browser. | 47 // Quota messages sent from the child process to the browser. |
| 45 | 48 |
| 46 IPC_MESSAGE_CONTROL3(QuotaHostMsg_QueryStorageUsageAndQuota, | 49 IPC_MESSAGE_CONTROL3(QuotaHostMsg_QueryStorageUsageAndQuota, |
| 47 int /* request_id */, | 50 int /* request_id */, |
| 48 GURL /* origin_url */, | 51 GURL /* origin_url */, |
| 49 storage::StorageType /* type */) | 52 storage::StorageType /* type */) |
| 50 | 53 |
| 51 IPC_MESSAGE_CONTROL1(QuotaHostMsg_RequestStorageQuota, | 54 IPC_MESSAGE_CONTROL1(QuotaHostMsg_RequestStorageQuota, |
| 52 content::StorageQuotaParams) | 55 content::StorageQuotaParams) |
| 56 |
| 57 #endif // CONTENT_COMMON_QUOTA_MESSAGES_H_ |
| OLD | NEW |