| Index: chrome/browser/chromeos/login/background_view.cc
|
| diff --git a/chrome/browser/chromeos/login/background_view.cc b/chrome/browser/chromeos/login/background_view.cc
|
| index 9c65f2c6ff955f8b169d2e50c750993544382ae3..173a33de9cdce199f8aadb84d633293465bf4de1 100644
|
| --- a/chrome/browser/chromeos/login/background_view.cc
|
| +++ b/chrome/browser/chromeos/login/background_view.cc
|
| @@ -76,7 +76,6 @@ namespace chromeos {
|
|
|
| BackgroundView::BackgroundView()
|
| : status_area_(NULL),
|
| - screen_mode_(StatusAreaViewChromeos::LOGIN_MODE_VIEWS),
|
| os_version_label_(NULL),
|
| boot_times_label_(NULL),
|
| shutdown_button_(NULL),
|
| @@ -295,7 +294,7 @@ void BackgroundView::OnBootTimesLabelTextUpdated(
|
| void BackgroundView::InitStatusArea() {
|
| DCHECK(status_area_ == NULL);
|
| status_area_ = new StatusAreaViewChromeos();
|
| - status_area_->Init(this, screen_mode_);
|
| + status_area_->Init(this);
|
| AddChildView(status_area_);
|
| }
|
|
|
|
|