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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/favicon/favicon_util.h" 5 #include "chrome/browser/favicon/favicon_util.h"
6 6
7 #include "chrome/common/icon_messages.h" 7 #include "chrome/common/icon_messages.h"
8 #include "content/public/browser/render_view_host.h" 8 #include "content/public/browser/render_view_host.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 10
11 // static 11 // static
12 int FaviconUtil::DownloadFavicon(content::RenderViewHost* rvh, 12 int FaviconUtil::DownloadFavicon(content::RenderViewHost* rvh,
13 const GURL& url, 13 const GURL& url,
14 int image_size) { 14 std::vector<int> image_sizes) {
pkotwicz 2012/08/02 23:47:08 bitmap_sizes
15 static int id = 0; 15 static int id = 0;
16 rvh->Send(new IconMsg_DownloadFavicon(rvh->GetRoutingID(), ++id, url, 16 rvh->Send(new IconMsg_DownloadFavicon(rvh->GetRoutingID(), ++id, url,
17 image_size)); 17 image_sizes));
18 return id; 18 return id;
19 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698