| Index: chrome/browser/views/tabs/tab.cc
|
| diff --git a/chrome/browser/views/tabs/tab.cc b/chrome/browser/views/tabs/tab.cc
|
| index 75de074ac84214790ec5de892d32f6a184ecbefc..099e64c74bb820e859845fb0ebf5f0514c374026 100644
|
| --- a/chrome/browser/views/tabs/tab.cc
|
| +++ b/chrome/browser/views/tabs/tab.cc
|
| @@ -184,9 +184,6 @@ int Tab::GetMiniWidth() {
|
| // Tab, protected:
|
|
|
| void Tab::DataChanged(const TabRendererData& old) {
|
| - if (data().phantom)
|
| - StopMiniTabTitleAnimation();
|
| -
|
| if (data().blocked != old.blocked) {
|
| if (data().blocked)
|
| StartPulse();
|
| @@ -214,7 +211,7 @@ void Tab::Paint(gfx::Canvas* canvas) {
|
| return;
|
|
|
| // See if the model changes whether the icons should be painted.
|
| - const bool show_icon = ShouldShowIcon() && !data().phantom;
|
| + const bool show_icon = ShouldShowIcon();
|
| const bool show_close_button = ShouldShowCloseBox();
|
| if (show_icon != showing_icon_ || show_close_button != showing_close_button_)
|
| Layout();
|
|
|