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, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
6 #include "content/common/common_param_traits.h" | 6 #include "content/public/common/common_param_traits.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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 string16 /* key */, | 82 string16 /* key */, |
83 GURL /* url */, | 83 GURL /* url */, |
84 NullableString16 /* old_value */) | 84 NullableString16 /* old_value */) |
85 | 85 |
86 // Clear the storage area. | 86 // Clear the storage area. |
87 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Clear, | 87 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Clear, |
88 int64 /* storage_area_id */, | 88 int64 /* storage_area_id */, |
89 GURL /* url */, | 89 GURL /* url */, |
90 bool /* something_cleared */) | 90 bool /* something_cleared */) |
91 | 91 |
OLD | NEW |