Home | History | Annotate | Download | only in autocomplete

Lines Matching defs:redirects

209     // higher-quality matches, and remove lower-quality redirects.  So we ask
260 // Remove redirects and trim list to size. We want to provide up to
720 history::RedirectList redirects;
721 backend->GetMostRecentRedirectsFrom(url, &redirects);
722 if (!redirects.empty()) {
723 // Remove all but the first occurrence of any of these redirects in the
727 // For example, when A redirects to B and our matches are [A, X, B],
728 // we'll get B as the redirects from, and we want to remove the second
729 // item of that pair, removing B. If A redirects to B and our matches are
731 redirects.push_back(url);
732 source = RemoveSubsequentMatchesOf(matches, source, redirects);