Home
last modified time | relevance | path

Searched refs:current_score (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/thumbnails/
Dthumbnail_service_impl.cc106 ThumbnailScore current_score; in ShouldAcquirePageThumbnail() local
107 if (local_ptr->GetPageThumbnailScore(url, &current_score) && in ShouldAcquirePageThumbnail()
108 !current_score.ShouldConsiderUpdating()) in ShouldAcquirePageThumbnail()
/external/chromium/chrome/browser/password_manager/
Dpassword_form_manager.cc229 int current_score = ScoreResult(*logins_result[i]); in OnRequestDone() local
244 (current_score > 0) && (!logins_result[i]->blacklisted_by_user)) { in OnRequestDone()
248 if (current_score < best_score) { in OnRequestDone()
252 if (current_score == best_score) { in OnRequestDone()
254 } else if (current_score > best_score) { in OnRequestDone()
255 best_score = current_score; in OnRequestDone()
/external/chromium_org/chrome/browser/password_manager/
Dpassword_form_manager.cc289 int current_score = ScoreResult(*logins_result[i]); in OnRequestDone() local
304 (current_score > 0) && (!logins_result[i]->blacklisted_by_user)) { in OnRequestDone()
318 if (current_score < best_score) { in OnRequestDone()
322 if (current_score == best_score) { in OnRequestDone()
324 } else if (current_score > best_score) { in OnRequestDone()
325 best_score = current_score; in OnRequestDone()
/external/chromium/chrome/browser/tab_contents/
Dthumbnail_generator.cc482 ThumbnailScore current_score; in ShouldUpdateThumbnail() local
483 if (top_sites->GetPageThumbnailScore(url, &current_score) && in ShouldUpdateThumbnail()
484 !current_score.ShouldConsiderUpdating()) in ShouldUpdateThumbnail()
/external/chromium/chrome/browser/history/
Dthumbnail_database.cc250 ThumbnailScore current_score; in SetPageThumbnail() local
251 if (ThumbnailScoreForId(id, &current_score)) { in SetPageThumbnail()
252 add_thumbnail = ShouldReplaceThumbnailWith(current_score, score); in SetPageThumbnail()