OLD | NEW |
---|---|
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 } |
OLD | NEW |