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

Side by Side Diff: chrome/browser/favicon/favicon_util.cc

Issue 10765021: Make the id used in IconMsg_DownloadFavicon unique (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/favicon/favicon_util.h ('k') | chrome/browser/ui/cocoa/hung_renderer_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698