HomeSort by relevance Sort by last modified time
    Searched refs:canonical_urls_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/history/
top_sites_cache.cc 74 return it == canonical_urls_.end() ? url : it->first.first->url;
79 canonical_urls_.lower_bound(CanonicalURLQuery(url).entry());
80 if (it_hi != canonical_urls_.end()) {
91 canonical_urls_.lower_bound(CanonicalURLQuery(base_url).entry());
92 if (it_lo == canonical_urls_.end())
115 return GetCanonicalURLsIterator(url) != canonical_urls_.end();
149 canonical_urls_.clear();
166 canonical_urls_[entry] = destination;
173 return canonical_urls_.find(CanonicalURLQuery(url).entry());
178 DCHECK(it != canonical_urls_.end())
    [all...]
top_sites_cache.h 25 // (map 1) searches for an URL in |canonical_urls_| that "matches" (see below)
31 // The rule to "match" URL in |canonical_urls_| always favors exact match.
34 // i.e., stored URLs in |canonical_urls_| that are prefixes of input URL,
71 // Searches for a URL in |canonical_urls_| that is a URL prefix of |url|.
104 // Creates the object needed to form std::map queries into |canonical_urls_|,
136 // Returns the iterator into |canonical_urls_| for the |url|.
139 // Returns the GURL corresponding to an iterator in |canonical_urls_|.
155 CanonicalURLs canonical_urls_; member in class:history::TopSitesCache

Completed in 945 milliseconds