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

Unified Diff: components/translate/content/common/data_file_cld_data_provider_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/translate/content/common/data_file_cld_data_provider_messages.h
diff --git a/components/translate/content/common/data_file_cld_data_provider_messages.h b/components/translate/content/common/data_file_cld_data_provider_messages.h
index 04a1e33d57aed04affbfa851bc28fc58721b4836..1faa3b6d95a5704396ac00ca6630bdb2e6207edf 100644
--- a/components/translate/content/common/data_file_cld_data_provider_messages.h
+++ b/components/translate/content/common/data_file_cld_data_provider_messages.h
@@ -8,6 +8,8 @@
// Multiply-included message file, hence no include guard.
+#include <stdint.h>
+
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
#include "ipc/ipc_platform_file.h"
@@ -32,5 +34,5 @@ IPC_MESSAGE_ROUTED0(ChromeFrameHostMsg_NeedCldDataFile)
// DataFileRendererCldDataProvider.
IPC_MESSAGE_ROUTED3(ChromeFrameMsg_CldDataFileAvailable,
IPC::PlatformFileForTransit /* ipc_file_handle */,
- uint64 /* data_offset */,
- uint64 /* data_length */)
+ uint64_t /* data_offset */,
+ uint64_t /* data_length */)

Powered by Google App Engine
This is Rietveld 408576698