| 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;
|
| }
|
|
|