Index: chrome/browser/chromeos/login/password_changed_view.cc |
diff --git a/chrome/browser/chromeos/login/password_changed_view.cc b/chrome/browser/chromeos/login/password_changed_view.cc |
index 5c0df3f88dc94b1aae6f5160d7dc107bc129da7c..a3cd43888f9b2b325eb9a3c5b5d73350cb559601 100644 |
--- a/chrome/browser/chromeos/login/password_changed_view.cc |
+++ b/chrome/browser/chromeos/login/password_changed_view.cc |
@@ -105,13 +105,13 @@ void PasswordChangedView::Init() { |
title_label_->SetFont(title_font); |
title_label_->SetText( |
l10n_util::GetStringUTF16(IDS_LOGIN_PASSWORD_CHANGED_TITLE)); |
- title_label_->SetHorizontalAlignment(Label::ALIGN_LEFT); |
+ title_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
description_label_ = new Label(); |
description_label_->SetText( |
l10n_util::GetStringUTF16(IDS_LOGIN_PASSWORD_CHANGED_DESC)); |
description_label_->SetMultiLine(true); |
- description_label_->SetHorizontalAlignment(Label::ALIGN_LEFT); |
+ description_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
full_sync_radio_ = new RadioButton( |
l10n_util::GetStringUTF16(IDS_LOGIN_PASSWORD_CHANGED_RESET), 0); |
@@ -135,7 +135,7 @@ void PasswordChangedView::Init() { |
password_error_label_->SetText( |
l10n_util::GetStringUTF16(IDS_NETWORK_CONFIG_ERROR_INCORRECT_PASSWORD)); |
password_error_label_->SetMultiLine(true); |
- password_error_label_->SetHorizontalAlignment(Label::ALIGN_LEFT); |
+ password_error_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
password_error_label_->SetEnabledColor(SK_ColorRED); |
} |