Chromium Code Reviews| 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 = 1; | |
| 16 rvh->Send(new IconMsg_DownloadFavicon(rvh->GetRoutingID(), id++, url, | |
| 17 image_size)); | |
|
stevenjb
2012/07/10 15:30:15
nit: align image_size with new
| |
| 18 return id; | |
| 19 } | |
| OLD | NEW |