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

Unified Diff: mojo/application/public/cpp/initialize_base_and_icu.cc

Issue 1543603002: Switch to standard integer types in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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: mojo/application/public/cpp/initialize_base_and_icu.cc
diff --git a/mojo/application/public/cpp/initialize_base_and_icu.cc b/mojo/application/public/cpp/initialize_base_and_icu.cc
index 0496811bbc5ffbb6bb1ad5a2b798bc0872a73f86..2ec37dfddf7b762b267a87007efab7770248727b 100644
--- a/mojo/application/public/cpp/initialize_base_and_icu.cc
+++ b/mojo/application/public/cpp/initialize_base_and_icu.cc
@@ -7,6 +7,8 @@
// which means that it can't use mojo. Our runners will dig around in the
// symbol table and run this before the mojo system is initialized.
+#include <stdint.h>
+
#include "base/files/file.h"
#include "base/i18n/icu_util.h"
#include "base/rand_util.h"
@@ -23,7 +25,7 @@ __declspec(dllexport) void __cdecl
#else
void __attribute__((visibility("default")))
#endif
-InitializeBase(const uint8* icu_data) {
+InitializeBase(const uint8_t* icu_data) {
base::RandUint64();
base::SysInfo::AmountOfPhysicalMemory();
base::SysInfo::NumberOfProcessors();
« no previous file with comments | « mojo/application/public/cpp/content_handler_factory.h ('k') | mojo/application/public/cpp/lib/content_handler_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698