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

Unified 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 5 years 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 side-by-side diff with in-line comments
Download patch
Index: components/visitedlink/common/visitedlink_messages.h
diff --git a/components/visitedlink/common/visitedlink_messages.h b/components/visitedlink/common/visitedlink_messages.h
index 95b93386315c37ca7ace8fa91ea773251ec73658..f2c1d880232d2f9c067d862ef8f6b10ebe45a15a 100644
--- a/components/visitedlink/common/visitedlink_messages.h
+++ b/components/visitedlink/common/visitedlink_messages.h
@@ -3,9 +3,11 @@
// found in the LICENSE file.
// Multiply-included file, no traditional include guard.
+
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
#include "base/memory/shared_memory.h"
#include "content/public/common/common_param_traits_macros.h"
#include "ipc/ipc_message_macros.h"
@@ -20,7 +22,7 @@ IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable,
// History system notification that a link has been added and the link
// coloring state for the given hash must be re-calculated.
-IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>)
+IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64_t>)
// History system notification that one or more history items have been
// deleted, which at this point means that all link coloring state must be
« 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