| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/dom_storage_common.h" | 6 #include "content/common/dom_storage_common.h" |
| 7 #include "googleurl/src/gurl.h" | 7 #include "googleurl/src/gurl.h" |
| 8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
| 9 #include "ipc/ipc_param_traits.h" | 9 #include "ipc/ipc_param_traits.h" |
| 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageArea.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageArea.h" |
| 11 | 11 |
| 12 #define IPC_MESSAGE_START DOMStorageMsgStart | 12 #define IPC_MESSAGE_START DOMStorageMsgStart |
| 13 | 13 |
| 14 // Signals a storage event. | 14 // Signals a storage event. |
| 15 IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params) | 15 IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params) |
| 16 // The key that generated the storage event. Null if clear() was called. | 16 // The key that generated the storage event. Null if clear() was called. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 string16 /* key */, | 84 string16 /* key */, |
| 85 GURL /* url */, | 85 GURL /* url */, |
| 86 NullableString16 /* old_value */) | 86 NullableString16 /* old_value */) |
| 87 | 87 |
| 88 // Clear the storage area. | 88 // Clear the storage area. |
| 89 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Clear, | 89 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Clear, |
| 90 int64 /* storage_area_id */, | 90 int64 /* storage_area_id */, |
| 91 GURL /* url */, | 91 GURL /* url */, |
| 92 bool /* something_cleared */) | 92 bool /* something_cleared */) |
| 93 | 93 |
| OLD | NEW |