| 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 // Multiply-included message file, hence no include guard. | 5 // Multiply-included message file, hence no include guard. |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "googleurl/src/gurl.h" |
| 8 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 9 #include "webkit/quota/quota_types.h" | 10 #include "webkit/quota/quota_types.h" |
| 10 | 11 |
| 11 #define IPC_MESSAGE_START QuotaMsgStart | 12 #define IPC_MESSAGE_START QuotaMsgStart |
| 12 | 13 |
| 13 IPC_ENUM_TRAITS(quota::StorageType) | 14 IPC_ENUM_TRAITS(quota::StorageType) |
| 14 IPC_ENUM_TRAITS(quota::QuotaStatusCode) | 15 IPC_ENUM_TRAITS(quota::QuotaStatusCode) |
| 15 | 16 |
| 16 // Quota messages sent from the browser to the child process. | 17 // Quota messages sent from the browser to the child process. |
| 17 | 18 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 int /* request_id */, | 35 int /* request_id */, |
| 35 GURL /* origin_url */, | 36 GURL /* origin_url */, |
| 36 quota::StorageType /* type */) | 37 quota::StorageType /* type */) |
| 37 | 38 |
| 38 IPC_MESSAGE_CONTROL5(QuotaHostMsg_RequestStorageQuota, | 39 IPC_MESSAGE_CONTROL5(QuotaHostMsg_RequestStorageQuota, |
| 39 int /* render_view_id */, | 40 int /* render_view_id */, |
| 40 int /* request_id */, | 41 int /* request_id */, |
| 41 GURL /* origin_url */, | 42 GURL /* origin_url */, |
| 42 quota::StorageType /* type */, | 43 quota::StorageType /* type */, |
| 43 int64 /* requested_size */) | 44 int64 /* requested_size */) |
| OLD | NEW |