Home | History | Annotate | Download | only in search_engines

Lines Matching defs:best

87   // For each group of prepopulated URLs with one ID, find the best URL to use
91 // Find the best URL.
96 UncheckedURLMap::iterator best = unchecked_urls.begin();
99 // A URL is automatically the best if it's the default search engine.
101 best = i;
105 // Otherwise, a URL is best if it matches the prepopulated data's keyword;
111 best = i;
113 } else if (i->second->id() < best->second->id()) {
114 best = i;
118 // Add the best URL to the checked group and delete the rest.
119 checked_urls.push_back(best->second);
121 if (i == best)