| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
| 6 #include "content/common/dom_storage/dom_storage_types.h" |
| 6 #include "content/public/common/common_param_traits.h" | 7 #include "content/public/common/common_param_traits.h" |
| 7 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
| 8 #include "ipc/ipc_param_traits.h" | 9 #include "ipc/ipc_param_traits.h" |
| 9 #include "third_party/WebKit/public/platform/WebStorageArea.h" | 10 #include "third_party/WebKit/public/platform/WebStorageArea.h" |
| 10 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 11 #include "webkit/common/dom_storage/dom_storage_types.h" | |
| 12 | 12 |
| 13 #define IPC_MESSAGE_START DOMStorageMsgStart | 13 #define IPC_MESSAGE_START DOMStorageMsgStart |
| 14 | 14 |
| 15 // Signals a local storage event. | 15 // Signals a local storage event. |
| 16 IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params) | 16 IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params) |
| 17 // The key that generated the storage event. Null if clear() was called. | 17 // The key that generated the storage event. Null if clear() was called. |
| 18 IPC_STRUCT_MEMBER(base::NullableString16, key) | 18 IPC_STRUCT_MEMBER(base::NullableString16, key) |
| 19 | 19 |
| 20 // The old value of this key. Null on clear() or if it didn't have a value. | 20 // The old value of this key. Null on clear() or if it didn't have a value. |
| 21 IPC_STRUCT_MEMBER(base::NullableString16, old_value) | 21 IPC_STRUCT_MEMBER(base::NullableString16, old_value) |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 GURL /* origin */) | 62 GURL /* origin */) |
| 63 | 63 |
| 64 // Close a previously opened storage area. | 64 // Close a previously opened storage area. |
| 65 IPC_MESSAGE_CONTROL1(DOMStorageHostMsg_CloseStorageArea, | 65 IPC_MESSAGE_CONTROL1(DOMStorageHostMsg_CloseStorageArea, |
| 66 int /* connection_id */) | 66 int /* connection_id */) |
| 67 | 67 |
| 68 // Retrieves the set of key/value pairs for the area. Used to prime | 68 // Retrieves the set of key/value pairs for the area. Used to prime |
| 69 // the renderer-side cache. A completion notification is sent in response. | 69 // the renderer-side cache. A completion notification is sent in response. |
| 70 IPC_SYNC_MESSAGE_CONTROL1_1(DOMStorageHostMsg_LoadStorageArea, | 70 IPC_SYNC_MESSAGE_CONTROL1_1(DOMStorageHostMsg_LoadStorageArea, |
| 71 int /* connection_id */, | 71 int /* connection_id */, |
| 72 dom_storage::ValuesMap) | 72 content::DOMStorageValuesMap) |
| 73 | 73 |
| 74 // Set a value that's associated with a key in a storage area. | 74 // Set a value that's associated with a key in a storage area. |
| 75 // A completion notification is sent in response. | 75 // A completion notification is sent in response. |
| 76 IPC_MESSAGE_CONTROL4(DOMStorageHostMsg_SetItem, | 76 IPC_MESSAGE_CONTROL4(DOMStorageHostMsg_SetItem, |
| 77 int /* connection_id */, | 77 int /* connection_id */, |
| 78 string16 /* key */, | 78 string16 /* key */, |
| 79 string16 /* value */, | 79 string16 /* value */, |
| 80 GURL /* page_url */) | 80 GURL /* page_url */) |
| 81 | 81 |
| 82 // Remove the value associated with a key in a storage area. | 82 // Remove the value associated with a key in a storage area. |
| 83 // A completion notification is sent in response. | 83 // A completion notification is sent in response. |
| 84 IPC_MESSAGE_CONTROL3(DOMStorageHostMsg_RemoveItem, | 84 IPC_MESSAGE_CONTROL3(DOMStorageHostMsg_RemoveItem, |
| 85 int /* connection_id */, | 85 int /* connection_id */, |
| 86 string16 /* key */, | 86 string16 /* key */, |
| 87 GURL /* page_url */) | 87 GURL /* page_url */) |
| 88 | 88 |
| 89 // Clear the storage area. A completion notification is sent in response. | 89 // Clear the storage area. A completion notification is sent in response. |
| 90 IPC_MESSAGE_CONTROL2(DOMStorageHostMsg_Clear, | 90 IPC_MESSAGE_CONTROL2(DOMStorageHostMsg_Clear, |
| 91 int /* connection_id */, | 91 int /* connection_id */, |
| 92 GURL /* page_url */) | 92 GURL /* page_url */) |
| 93 | 93 |
| 94 // Used to flush the ipc message queue. | 94 // Used to flush the ipc message queue. |
| 95 IPC_SYNC_MESSAGE_CONTROL0_0(DOMStorageHostMsg_FlushMessages) | 95 IPC_SYNC_MESSAGE_CONTROL0_0(DOMStorageHostMsg_FlushMessages) |
| OLD | NEW |