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

Unified Diff: chrome/browser/chromeos/login/background_view.cc

Issue 3023020: Hide feedback button on login screen.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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/chromeos/login/background_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_);
}
« no previous file with comments | « chrome/browser/chromeos/login/background_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698