diff options
Diffstat (limited to 'chrome/browser/views/tabs/tab_renderer.cc')
-rw-r--r-- | chrome/browser/views/tabs/tab_renderer.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/views/tabs/tab_renderer.cc b/chrome/browser/views/tabs/tab_renderer.cc index 9220907..8b5a1d8 100644 --- a/chrome/browser/views/tabs/tab_renderer.cc +++ b/chrome/browser/views/tabs/tab_renderer.cc @@ -318,14 +318,13 @@ void TabRenderer::UpdateData(TabContents* contents, data_.title = contents->GetTitle(); data_.off_the_record = contents->profile()->IsOffTheRecord(); data_.crashed = contents->is_crashed(); + data_.app = contents->is_app(); SkBitmap* app_icon = contents->GetAppExtensionIcon(); - if (app_icon) + if (app_icon && data_.app) data_.favicon = *app_icon; else data_.favicon = contents->GetFavIcon(); - data_.phantom = phantom; - data_.app = contents->is_app(); // Sets the accessible name for the tab. SetAccessibleName(UTF16ToWide(data_.title)); |