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

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

Issue 11377005: Replace Label::Alignment with gfx::HorizontalAlignment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix remaining Label::Alignment references. Created 8 years, 1 month 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/message_bubble.cc ('k') | chrome/browser/chromeos/login/take_photo_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « chrome/browser/chromeos/login/message_bubble.cc ('k') | chrome/browser/chromeos/login/take_photo_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698