Index: chrome/browser/favicon/favicon_tab_helper.h |
diff --git a/chrome/browser/favicon/favicon_tab_helper.h b/chrome/browser/favicon/favicon_tab_helper.h |
index a5ef1ae2fd1f198a738976d08623f37a9145372a..72845b8544c013fa5f473207ccb3aba6e7e0e77a 100644 |
--- a/chrome/browser/favicon/favicon_tab_helper.h |
+++ b/chrome/browser/favicon/favicon_tab_helper.h |
@@ -51,6 +51,12 @@ class FaviconTabHelper : public content::WebContentsObserver, |
// space is provided for the favicon, and the favicon is never displayed. |
virtual bool ShouldDisplayFavicon(); |
+ // Returns the current tab's favicon urls. Returns NULL if the current tab's |
+ // favicon urls have not been populated yet. |
+ const std::vector<content::FaviconURL>& GetFaviconURLs() { |
sky
2013/12/11 15:12:06
GetFaviconURLS()-> favicon_urls() and make const.
calamity
2013/12/12 05:35:00
Done.
|
+ return favicon_urls_; |
+ } |
+ |
// Allows the client to determine if they want to fetch the Favicons as |
// they are discovered. |
void set_should_fetch_icons(bool fetch) { |
@@ -94,6 +100,8 @@ class FaviconTabHelper : public content::WebContentsObserver, |
Profile* profile_; |
bool should_fetch_icons_; |
+ std::vector<content::FaviconURL> favicon_urls_; |
+ |
scoped_ptr<FaviconHandler> favicon_handler_; |
// Handles downloading touchicons. It is NULL if |