OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/shared_memory.h" | 9 #include "base/memory/shared_memory.h" |
10 #include "content/public/common/common_param_traits_macros.h" | 10 #include "content/public/common/common_param_traits_macros.h" |
11 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
12 | 12 |
13 #define IPC_MESSAGE_START VisitedLinkMsgStart | 13 #define IPC_MESSAGE_START VisitedLinkMsgStart |
14 | 14 |
15 // History system notification that the visited link database has been | 15 // History system notification that the visited link database has been |
16 // replaced. It has one SharedMemoryHandle argument consisting of the table | 16 // replaced. It has one SharedMemoryHandle argument consisting of the table |
17 // handle. This handle is valid in the context of the renderer | 17 // handle. This handle is valid in the context of the renderer |
18 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable, | 18 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable, |
19 base::SharedMemoryHandle) | 19 base::SharedMemoryHandle) |
20 | 20 |
21 // History system notification that a link has been added and the link | 21 // History system notification that a link has been added and the link |
22 // coloring state for the given hash must be re-calculated. | 22 // coloring state for the given hash must be re-calculated. |
23 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>) | 23 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>) |
24 | 24 |
25 // History system notification that one or more history items have been | 25 // History system notification that one or more history items have been |
26 // deleted, which at this point means that all link coloring state must be | 26 // deleted, which at this point means that all link coloring state must be |
27 // re-calculated. | 27 // re-calculated. |
28 IPC_MESSAGE_CONTROL0(ChromeViewMsg_VisitedLink_Reset) | 28 IPC_MESSAGE_CONTROL0(ChromeViewMsg_VisitedLink_Reset) |
29 | 29 |
OLD | NEW |