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

  /external/chromium_org/chrome/browser/history/
top_sites_cache_unittest.cc 112 TEST_F(TopSitesCacheTest, IsKnownUrl) {
115 EXPECT_TRUE(cache_.IsKnownURL(GURL("http://www.google.com")));
116 EXPECT_TRUE(cache_.IsKnownURL(GURL("http://www.gooogle.com")));
117 EXPECT_TRUE(cache_.IsKnownURL(GURL("http://www.google.com/")));
120 EXPECT_FALSE(cache_.IsKnownURL(GURL("http://www.google.com?")));
121 EXPECT_FALSE(cache_.IsKnownURL(GURL("http://www.google.net")));
122 EXPECT_FALSE(cache_.IsKnownURL(GURL("http://www.google.com/stuff")));
123 EXPECT_FALSE(cache_.IsKnownURL(GURL("https://www.gooogle.com")));
124 EXPECT_FALSE(cache_.IsKnownURL(GURL("http://www.youtube.com/a")));
top_sites.h 130 virtual bool IsKnownURL(const GURL& url) = 0;
top_sites_cache.h 78 bool IsKnownURL(const GURL& url) const;
top_sites_cache.cc 114 bool TopSitesCache::IsKnownURL(const GURL& url) const {
119 DCHECK(IsKnownURL(url));
162 if (!IsKnownURL(redirects[i])) {
top_sites_impl.cc 149 if (!IsKnownURL(url)) {
188 if (!IsKnownURL(url)) {
469 bool TopSitesImpl::IsKnownURL(const GURL& url) {
470 return loaded_ && cache_->IsKnownURL(url);
493 DCHECK(cache_->IsKnownURL(url));
526 if (!cache_->IsKnownURL(url))
616 if (cache_->IsKnownURL(url)) {
755 if (cache_->IsKnownURL(i->url()))
781 if (!cache_->IsKnownURL(url) && HistoryService::CanAddURL(url)) {
    [all...]
top_sites_impl.h 83 virtual bool IsKnownURL(const GURL& url) OVERRIDE;
  /external/chromium/chrome/browser/history/
top_sites_cache.cc 66 bool TopSitesCache::IsKnownURL(const GURL& url) {
71 DCHECK(IsKnownURL(url));
77 if (IsKnownURL(i->first)) {
102 if (!IsKnownURL(redirects[i])) {
top_sites_cache.h 56 bool IsKnownURL(const GURL& url);
top_sites.cc 197 if (!IsKnownURL(url)) {
511 bool TopSites::IsKnownURL(const GURL& url) {
512 return loaded_ && cache_->IsKnownURL(url);
526 DCHECK(cache_->IsKnownURL(url));
558 if (!cache_->IsKnownURL(url))
783 if (cache_->IsKnownURL(*i))
807 if (!cache_->IsKnownURL(url) && HistoryService::CanAddURL(url)) {
    [all...]
top_sites.h 159 virtual bool IsKnownURL(const GURL& url);
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_impl.cc 103 if (local_ptr->IsNonForcedFull() && !local_ptr->IsKnownURL(url))
thumbnail_service_unittest.cc 30 virtual bool IsKnownURL(const GURL& url) OVERRIDE {
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator_unittest.cc 296 virtual bool IsKnownURL(const GURL& url) {
thumbnail_generator.cc 479 if (top_sites->IsFull() && !top_sites->IsKnownURL(url))

Completed in 93 milliseconds