Index: chrome/browser/favicon/favicon_handler.h |
diff --git a/chrome/browser/favicon/favicon_handler.h b/chrome/browser/favicon/favicon_handler.h |
index 77ffe3e97437fe346c631925aa5b7511310bbc64..02b2f818de44507edaeead2d46b6bf6853528d97 100644 |
--- a/chrome/browser/favicon/favicon_handler.h |
+++ b/chrome/browser/favicon/favicon_handler.h |
@@ -115,7 +115,8 @@ class FaviconHandler { |
void OnDidDownloadFavicon(int id, |
const GURL& image_url, |
bool errored, |
- const gfx::Image& image); |
+ const gfx::Image& image, |
+ float score); |
// For testing. |
const std::deque<FaviconURL>& image_urls() const { return image_urls_; } |
@@ -186,13 +187,13 @@ class FaviconHandler { |
FaviconCandidate(const GURL& url, |
const GURL& image_url, |
const gfx::Image& image, |
- int bitmap_size, |
+ float score, |
history::IconType icon_type); |
GURL url; |
GURL image_url; |
gfx::Image image; |
- int bitmap_size; |
+ float score; |
history::IconType icon_type; |
}; |
@@ -223,6 +224,7 @@ class FaviconHandler { |
bool UpdateFaviconCandidate(const GURL& url, |
const GURL& image_url, |
const gfx::Image& image, |
+ float score, |
history::IconType icon_type); |
// Sets the image data for the favicon. |