| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/favicon/favicon_util.h" |
| 6 |
| 7 #include "chrome/common/icon_messages.h" |
| 8 #include "content/public/browser/render_view_host.h" |
| 9 #include "googleurl/src/gurl.h" |
| 10 |
| 11 // static |
| 12 int FaviconUtil::DownloadFavicon(content::RenderViewHost* rvh, |
| 13 GURL url, |
| 14 int image_size) { |
| 15 static int id = 0; |
| 16 rvh->Send(new IconMsg_DownloadFavicon(rvh->GetRoutingID(), ++id, url, |
| 17 image_size)); |
| 18 return id; |
| 19 } |
| OLD | NEW |