Index: chrome/browser/chromeos/login/background_view.cc |
=================================================================== |
--- chrome/browser/chromeos/login/background_view.cc (revision 53758) |
+++ chrome/browser/chromeos/login/background_view.cc (working copy) |
@@ -150,12 +150,6 @@ |
// TODO(avayvod): Add some dialog for options or remove them completely. |
} |
-bool BackgroundView::IsButtonVisible(const views::View* button_view) const { |
- if (button_view == status_area_->feedback_view()) |
- return false; |
- return true; |
-} |
- |
bool BackgroundView::IsBrowserMode() const { |
return false; |
} |
@@ -173,6 +167,7 @@ |
DCHECK(status_area_ == NULL); |
status_area_ = new StatusAreaView(this); |
status_area_->Init(); |
+ status_area_->feedback_view()->SetVisible(false); |
AddChildView(status_area_); |
} |