| Index: chrome/renderer/safe_browsing/scorer.cc
|
| diff --git a/chrome/renderer/safe_browsing/scorer.cc b/chrome/renderer/safe_browsing/scorer.cc
|
| index a8a23afd868d67cf84cfe2c4746d086495604299..545c1650cc5dcc55d7be1b8dcf9f0623910c53fb 100644
|
| --- a/chrome/renderer/safe_browsing/scorer.cc
|
| +++ b/chrome/renderer/safe_browsing/scorer.cc
|
| @@ -91,7 +91,7 @@ const base::hash_set<std::string>& Scorer::page_terms() const {
|
| return page_terms_;
|
| }
|
|
|
| -const base::hash_set<uint32>& Scorer::page_words() const {
|
| +const base::hash_set<uint32_t>& Scorer::page_words() const {
|
| return page_words_;
|
| }
|
|
|
| @@ -99,7 +99,7 @@ size_t Scorer::max_words_per_term() const {
|
| return model_.max_words_per_term();
|
| }
|
|
|
| -uint32 Scorer::murmurhash3_seed() const {
|
| +uint32_t Scorer::murmurhash3_seed() const {
|
| return model_.murmur_hash_seed();
|
| }
|
|
|
|
|