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

Unified Diff: chrome/browser/history/history.h

Issue 6651014: Applied the IconType. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: sync Created 9 years, 9 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/history/history.h
diff --git a/chrome/browser/history/history.h b/chrome/browser/history/history.h
index 6cbbd66e710653c498f8d514ba23fa3a86ce5552..3898c3ab4e8978b24db3da524d955553f8d5828c 100644
--- a/chrome/browser/history/history.h
+++ b/chrome/browser/history/history.h
@@ -642,17 +642,20 @@ class HistoryService : public CancelableRequestProvider,
// Used by the FaviconService to get a favicon from the history backend.
void GetFavicon(FaviconService::GetFaviconRequest* request,
- const GURL& icon_url);
+ const GURL& icon_url,
+ history::IconType icon_type);
// Used by the FaviconService to update the favicon mappings on the history
// backend.
void UpdateFaviconMappingAndFetch(FaviconService::GetFaviconRequest* request,
const GURL& page_url,
- const GURL& icon_url);
+ const GURL& icon_url,
+ history::IconType icon_type);
// Used by the FaviconService to get a favicon from the history backend.
void GetFaviconForURL(FaviconService::GetFaviconRequest* request,
- const GURL& page_url);
+ const GURL& page_url,
+ int icon_types);
// Used by the FaviconService to mark the favicon for the page as being out
// of date.
@@ -668,7 +671,8 @@ class HistoryService : public CancelableRequestProvider,
// backend.
void SetFavicon(const GURL& page_url,
const GURL& icon_url,
- const std::vector<unsigned char>& image_data);
+ const std::vector<unsigned char>& image_data,
+ history::IconType icon_type);
// Sets the in-memory URL database. This is called by the backend once the

Powered by Google App Engine
This is Rietveld 408576698