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

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

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review, take 2 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 3bb104a4eac4f9e7714b8fd1d7a3747101fcaca5..b4c396a01f2bcb833ccafbf1ad49ef825dedcb4b 100644
--- a/chrome/browser/favicon/favicon_tab_helper.cc
+++ b/chrome/browser/favicon/favicon_tab_helper.cc
@@ -140,7 +140,7 @@ NavigationEntry* FaviconTabHelper::GetActiveEntry() {
}
void FaviconTabHelper::StartDownload(int id, const GURL& url, int image_size) {
- RenderViewHost* host = web_contents()->GetRenderViewHost();
+ content::RenderViewHost* host = web_contents()->GetRenderViewHost();
host->Send(new IconMsg_DownloadFavicon(
host->GetRoutingID(), id, url, image_size));
}

Powered by Google App Engine
This is Rietveld 408576698