| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_DOM_STORAGE_DOM_STORAGE_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_DOM_STORAGE_DOM_STORAGE_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message file, no traditional include guard. | 8 // Multiply-included message file, no traditional include guard. |
| 6 | 9 |
| 7 #include <stdint.h> | 10 #include <stdint.h> |
| 8 | 11 |
| 9 #include "content/common/dom_storage/dom_storage_types.h" | 12 #include "content/common/dom_storage/dom_storage_types.h" |
| 10 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
| 11 #include "ipc/ipc_param_traits.h" | 14 #include "ipc/ipc_param_traits.h" |
| 12 #include "third_party/WebKit/public/platform/WebStorageArea.h" | 15 #include "third_party/WebKit/public/platform/WebStorageArea.h" |
| 13 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| 14 #include "url/ipc/url_param_traits.h" | 17 #include "url/ipc/url_param_traits.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 base::string16 /* key */, | 93 base::string16 /* key */, |
| 91 GURL /* page_url */) | 94 GURL /* page_url */) |
| 92 | 95 |
| 93 // Clear the storage area. A completion notification is sent in response. | 96 // Clear the storage area. A completion notification is sent in response. |
| 94 IPC_MESSAGE_CONTROL2(DOMStorageHostMsg_Clear, | 97 IPC_MESSAGE_CONTROL2(DOMStorageHostMsg_Clear, |
| 95 int /* connection_id */, | 98 int /* connection_id */, |
| 96 GURL /* page_url */) | 99 GURL /* page_url */) |
| 97 | 100 |
| 98 // Used to flush the ipc message queue. | 101 // Used to flush the ipc message queue. |
| 99 IPC_SYNC_MESSAGE_CONTROL0_0(DOMStorageHostMsg_FlushMessages) | 102 IPC_SYNC_MESSAGE_CONTROL0_0(DOMStorageHostMsg_FlushMessages) |
| 103 |
| 104 #endif // CONTENT_COMMON_DOM_STORAGE_DOM_STORAGE_MESSAGES_H_ |
| OLD | NEW |