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

Unified Diff: chrome/renderer/safe_browsing/murmurhash3_util.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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: chrome/renderer/safe_browsing/murmurhash3_util.cc
diff --git a/chrome/renderer/safe_browsing/murmurhash3_util.cc b/chrome/renderer/safe_browsing/murmurhash3_util.cc
index 9569b32f86139e96901627647b2127b59cbf6320..4134203e0ed60c5074cd1df561095c8c6dc0715f 100644
--- a/chrome/renderer/safe_browsing/murmurhash3_util.cc
+++ b/chrome/renderer/safe_browsing/murmurhash3_util.cc
@@ -7,8 +7,8 @@
namespace safe_browsing {
-uint32 MurmurHash3String(const std::string& str, uint32 seed) {
- uint32 output;
+uint32_t MurmurHash3String(const std::string& str, uint32_t seed) {
+ uint32_t output;
MurmurHash3_x86_32(str.data(), str.size(), seed, &output);
return output;
}
« no previous file with comments | « chrome/renderer/safe_browsing/murmurhash3_util.h ('k') | chrome/renderer/safe_browsing/phishing_classifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698