Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(839)

Side by Side Diff: components/visitedlink/common/visitedlink_messages.h

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
7 #include <stdint.h>
8
6 #include <vector> 9 #include <vector>
7 10
8 #include "base/basictypes.h"
9 #include "base/memory/shared_memory.h" 11 #include "base/memory/shared_memory.h"
10 #include "content/public/common/common_param_traits_macros.h" 12 #include "content/public/common/common_param_traits_macros.h"
11 #include "ipc/ipc_message_macros.h" 13 #include "ipc/ipc_message_macros.h"
12 14
13 #define IPC_MESSAGE_START VisitedLinkMsgStart 15 #define IPC_MESSAGE_START VisitedLinkMsgStart
14 16
15 // History system notification that the visited link database has been 17 // History system notification that the visited link database has been
16 // replaced. It has one SharedMemoryHandle argument consisting of the table 18 // replaced. It has one SharedMemoryHandle argument consisting of the table
17 // handle. This handle is valid in the context of the renderer 19 // handle. This handle is valid in the context of the renderer
18 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable, 20 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable,
19 base::SharedMemoryHandle) 21 base::SharedMemoryHandle)
20 22
21 // History system notification that a link has been added and the link 23 // History system notification that a link has been added and the link
22 // coloring state for the given hash must be re-calculated. 24 // coloring state for the given hash must be re-calculated.
23 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>) 25 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64_t>)
24 26
25 // History system notification that one or more history items have been 27 // 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 28 // deleted, which at this point means that all link coloring state must be
27 // re-calculated. Boolean flag is used to inform renderer process to invalidate 29 // re-calculated. Boolean flag is used to inform renderer process to invalidate
28 // cached visited links hashes. The flag is needed because the salt will change 30 // cached visited links hashes. The flag is needed because the salt will change
29 // after loading the visitedlink table from the database file. 31 // after loading the visitedlink table from the database file.
30 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Reset, bool) 32 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Reset, bool)
OLDNEW
« no previous file with comments | « components/visitedlink/common/visitedlink_common.cc ('k') | components/visitedlink/renderer/visitedlink_slave.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698