Index: components/favicon/ios/web_favicon_driver.h |
diff --git a/components/favicon/ios/web_favicon_driver.h b/components/favicon/ios/web_favicon_driver.h |
index 1e17e49e4c3985dbebcffc8e483e874e6840c33d..55e2945a5685f28dd45d4624fba99295907460bc 100644 |
--- a/components/favicon/ios/web_favicon_driver.h |
+++ b/components/favicon/ios/web_favicon_driver.h |
@@ -35,10 +35,12 @@ class WebFaviconDriver : public web::WebStateObserver, |
int StartDownload(const GURL& url, int max_bitmap_size) override; |
bool IsOffTheRecord() override; |
GURL GetActiveURL() override; |
- void SetActiveFaviconValidity(bool valid) override; |
- GURL GetActiveFaviconURL() override; |
- void SetActiveFaviconURL(const GURL& url) override; |
- void SetActiveFaviconImage(const gfx::Image& image) override; |
+ void OnFaviconUpdated( |
+ const GURL& page_url, |
+ FaviconDriverObserver::NotificationIconType notification_icon_type, |
+ const GURL& icon_url, |
+ bool icon_url_changed, |
+ const gfx::Image& image) override; |
private: |
friend class web::WebStateUserData<WebFaviconDriver>; |
@@ -53,9 +55,6 @@ class WebFaviconDriver : public web::WebStateObserver, |
void FaviconUrlUpdated( |
const std::vector<web::FaviconURL>& candidates) override; |
- // Returns the active navigation entry's favicon. |
- web::FaviconStatus& GetFaviconStatus(); |
- |
// The URL passed to FetchFavicon(). |
GURL fetch_favicon_url_; |