| Index: chrome/renderer/safe_browsing/scorer.cc
|
| diff --git a/chrome/renderer/safe_browsing/scorer.cc b/chrome/renderer/safe_browsing/scorer.cc
|
| index 14eaab9f99112658b73622843c61c92a6e9f5b29..a8a23afd868d67cf84cfe2c4746d086495604299 100644
|
| --- a/chrome/renderer/safe_browsing/scorer.cc
|
| +++ b/chrome/renderer/safe_browsing/scorer.cc
|
| @@ -103,6 +103,14 @@ uint32 Scorer::murmurhash3_seed() const {
|
| return model_.murmur_hash_seed();
|
| }
|
|
|
| +size_t Scorer::max_shingles_per_page() const {
|
| + return model_.max_shingles_per_page();
|
| +}
|
| +
|
| +size_t Scorer::shingle_size() const {
|
| + return model_.shingle_size();
|
| +}
|
| +
|
| double Scorer::ComputeRuleScore(const ClientSideModel::Rule& rule,
|
| const FeatureMap& features) const {
|
| const base::hash_map<std::string, double>& feature_map = features.features();
|
|
|