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

Unified Diff: chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc

Issue 10837090: Change return type of FaviconTabHelper::GetFavicon() to gfx::Image. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | content/public/browser/favicon_status.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
diff --git a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
index fa7ccf814c36fe00da175bf9a66f1905329a1eda..7ddbd68b075c51f85321b301bd8e0b97e0b14e28 100644
--- a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
+++ b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
@@ -509,7 +509,9 @@ void BrowserTabStripController::SetTabRendererDataFromModel(
TabStatus tab_status) {
TabContents* tab_contents = TabContents::FromWebContents(contents);
- data->favicon = tab_contents->favicon_tab_helper()->GetFavicon();
+ // TODO: Convert data->favicon to gfx::Image.
+ data->favicon =
+ tab_contents->favicon_tab_helper()->GetFavicon().AsBitmap();
data->network_state = TabContentsNetworkState(contents);
data->title = contents->GetTitle();
data->url = contents->GetURL();
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | content/public/browser/favicon_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698