Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6538)

Unified Diff: chrome/browser/favicon/favicon_handler.h

Issue 10870022: Change FaviconData to be able to return data for multiple bitmaps for same icon URL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/favicon/favicon_handler.h
diff --git a/chrome/browser/favicon/favicon_handler.h b/chrome/browser/favicon/favicon_handler.h
index 02b2f818de44507edaeead2d46b6bf6853528d97..afb15c52be66f215c633deeec5aae093c9a964e2 100644
--- a/chrome/browser/favicon/favicon_handler.h
+++ b/chrome/browser/favicon/favicon_handler.h
@@ -199,7 +199,8 @@ class FaviconHandler {
// See description above class for details.
void OnFaviconDataForInitialURL(FaviconService::Handle handle,
- history::FaviconData favicon);
+ history::FaviconData favicon,
+ std::vector<GURL> icon_urls_in_db);
// If the favicon has expired, asks the renderer to download the favicon.
// Otherwise asks history to update the mapping between page url and icon
@@ -210,7 +211,8 @@ class FaviconHandler {
// See description above class for details.
void OnFaviconData(FaviconService::Handle handle,
- history::FaviconData favicon);
+ history::FaviconData favicon,
+ std::vector<GURL> icon_urls_in_db);
// Schedules a download for the specified entry. This adds the request to
// download_requests_.

Powered by Google App Engine
This is Rietveld 408576698