Chromium Code Reviews| 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 59cfca2e2d074931cee773c3cdc780679366205a..9b9e7d004dad6428da9dd6a76508d53926dbb338 100644 |
| --- a/components/favicon/ios/web_favicon_driver.h |
| +++ b/components/favicon/ios/web_favicon_driver.h |
| @@ -33,9 +33,13 @@ class WebFaviconDriver : public web::WebStateObserver, |
| void FetchFavicon(const GURL& url) override; |
| gfx::Image GetFavicon() const override; |
| bool FaviconIsValid() const override; |
| - int StartDownload(const GURL& url, int max_bitmap_size) override; |
| - bool IsOffTheRecord() override; |
| GURL GetActiveURL() override; |
| + |
| + // FaviconHandler::Delegate implementation. |
| + int DownloadImage(const GURL& url, |
| + int max_image_size, |
| + ImageDownloadCallback callback) override; |
|
pkotwicz
2017/02/22 02:37:54
Nit: Can you please reorder the functions in the .
mastiz
2017/02/23 21:55:54
Done.
|
| + bool IsOffTheRecord() override; |
| void OnFaviconUpdated( |
| const GURL& page_url, |
| FaviconDriverObserver::NotificationIconType notification_icon_type, |