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

Unified Diff: chrome/browser/favicon/favicon_util.cc

Issue 10828127: Use hi-resolution favicon variants if available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: daringfireball hackfix Created 8 years, 5 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_util.cc
diff --git a/chrome/browser/favicon/favicon_util.cc b/chrome/browser/favicon/favicon_util.cc
index 405eb410448c0c48fc179e9b6706d467022db832..129adb53416f62b0d52ad5578da8f0b8aedb5251 100644
--- a/chrome/browser/favicon/favicon_util.cc
+++ b/chrome/browser/favicon/favicon_util.cc
@@ -11,9 +11,9 @@
// static
int FaviconUtil::DownloadFavicon(content::RenderViewHost* rvh,
const GURL& url,
- int image_size) {
+ std::vector<int> image_sizes) {
pkotwicz 2012/08/02 23:47:08 bitmap_sizes
static int id = 0;
rvh->Send(new IconMsg_DownloadFavicon(rvh->GetRoutingID(), ++id, url,
- image_size));
+ image_sizes));
return id;
}

Powered by Google App Engine
This is Rietveld 408576698