Home
last modified time | relevance | path

Searched refs:favicon_urls (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
Dfavicon_downloader_unittest.cc105 std::vector<content::FaviconURL> favicon_urls; in TEST_F() local
106 favicon_urls.push_back(content::FaviconURL( in TEST_F()
108 downloader.set_initial_favicon_urls(favicon_urls); in TEST_F()
115 downloader.CompleteImageDownload(0, favicon_urls[0].icon_url, sizes); in TEST_F()
126 std::vector<content::FaviconURL> favicon_urls; in TEST_F() local
127 favicon_urls.push_back(content::FaviconURL( in TEST_F()
135 downloader.UpdateFaviconURLs(favicon_urls); in TEST_F()
139 downloader.CompleteImageDownload(0, favicon_urls[0].icon_url, sizes); in TEST_F()
158 std::vector<content::FaviconURL> favicon_urls; in TEST_F() local
159 favicon_urls.push_back(content::FaviconURL( in TEST_F()
[all …]
Dfavicon_downloader.cc55 return favicon_tab_helper ? favicon_tab_helper->favicon_urls() in GetFaviconURLsFromWebContents()
60 const std::vector<content::FaviconURL>& favicon_urls) { in FetchIcons() argument
63 favicon_urls.begin(); in FetchIcons()
64 it != favicon_urls.end(); ++it) { in FetchIcons()
Dfavicon_downloader.h57 void FetchIcons(const std::vector<content::FaviconURL>& favicon_urls);
/external/chromium_org/chrome/browser/favicon/
Dfavicon_tab_helper.cc249 std::vector<favicon::FaviconURL> favicon_urls; in DidUpdateFaviconURL() local
252 favicon_urls.push_back( in DidUpdateFaviconURL()
257 favicon_handler_->OnUpdateFaviconURL(favicon_urls); in DidUpdateFaviconURL()
259 touch_icon_handler_->OnUpdateFaviconURL(favicon_urls); in DidUpdateFaviconURL()
Dfavicon_tab_helper.h61 const std::vector<content::FaviconURL>& favicon_urls() const { in favicon_urls() function
/external/chromium_org/chrome/browser/history/
Dhistory_notifications.h69 std::set<GURL> favicon_urls; member
Dexpire_history_backend.cc332 details->favicon_urls = effects->deleted_favicons; in BroadcastNotifications()
/external/chromium_org/chrome/browser/sync/glue/
Dfavicon_cache.h181 void DeleteSyncedFavicons(const std::set<GURL>& favicon_urls);
Dfavicon_cache.cc586 DeleteSyncedFavicons(deleted_details->favicon_urls); in Observe()
964 void FaviconCache::DeleteSyncedFavicons(const std::set<GURL>& favicon_urls) { in DeleteSyncedFavicons() argument
966 for (std::set<GURL>::const_iterator iter = favicon_urls.begin(); in DeleteSyncedFavicons()
967 iter != favicon_urls.end(); ++iter) { in DeleteSyncedFavicons()
Dfavicon_cache_unittest.cc1510 deletions.favicon_urls.insert(test_data.icon_url); in TEST_F()