Home | History | Annotate | Download | only in safe_browsing

Lines Matching defs:scorer

18 #include "chrome/renderer/safe_browsing/scorer.h"
44 static base::LazyInstance<scoped_ptr<const safe_browsing::Scorer> >
70 safe_browsing::Scorer* scorer = NULL;
74 scorer = safe_browsing::Scorer::Create(model);
75 if (!scorer) {
82 (*i)->SetPhishingScorer(scorer);
84 g_phishing_scorer.Get().reset(scorer);
120 const safe_browsing::Scorer* scorer) {
125 // actually replacing an existing scorer with a new model. In
128 // replace the old scorer with the new one once classification is done
132 classifier_->set_phishing_scorer(scorer);
227 // 1. A Scorer has been created
238 VLOG(2) << "Not starting classification, no Scorer created.";
239 // Keep classifier_page_text_, in case a Scorer is set later.