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

Unified Diff: chrome/browser/favicon/favicon_tab_helper.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for initial review. Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/favicon/favicon_tab_helper.cc
diff --git a/chrome/browser/favicon/favicon_tab_helper.cc b/chrome/browser/favicon/favicon_tab_helper.cc
index 8afdea97fff3da45121d997ba74e63c5c36cfbc1..c77ff3ebc2c6a43d1aebf39232d56d6f805504e8 100644
--- a/chrome/browser/favicon/favicon_tab_helper.cc
+++ b/chrome/browser/favicon/favicon_tab_helper.cc
@@ -142,7 +142,7 @@ NavigationEntry* FaviconTabHelper::GetActiveEntry() {
void FaviconTabHelper::StartDownload(int id, const GURL& url, int image_size) {
RenderViewHost* host = web_contents()->GetRenderViewHost();
host->Send(new IconMsg_DownloadFavicon(
- host->routing_id(), id, url, image_size));
+ host->GetRoutingID(), id, url, image_size));
}
void FaviconTabHelper::NotifyFaviconUpdated() {

Powered by Google App Engine
This is Rietveld 408576698