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

Unified Diff: chrome/browser/chromeos/login/take_photo_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
Index: chrome/browser/chromeos/login/take_photo_view.cc
diff --git a/chrome/browser/chromeos/login/take_photo_view.cc b/chrome/browser/chromeos/login/take_photo_view.cc
index 7967331aa85532c56d5ea4b05b564bee2c1b78a3..f203f5298c466325b96547d4d71b23cc027afe9b 100644
--- a/chrome/browser/chromeos/login/take_photo_view.cc
+++ b/chrome/browser/chromeos/login/take_photo_view.cc
@@ -62,7 +62,7 @@ class CameraImageView : public views::ImageView {
message_ = new views::Label();
message_->SetMultiLine(true);
- message_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ message_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
message_->SetVisible(false);
CorrectLabelFontSize(message_);
AddChildView(message_);
@@ -162,7 +162,7 @@ void TakePhotoView::Init(int image_width, int image_height) {
if (show_title_) {
title_label_ = new views::Label(
l10n_util::GetStringUTF16(IDS_USER_IMAGE_SCREEN_TITLE));
- title_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ title_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
title_label_->SetMultiLine(true);
CorrectLabelFontSize(title_label_);
}
« no previous file with comments | « chrome/browser/chromeos/login/password_changed_view.cc ('k') | chrome/browser/chromeos/options/vpn_config_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698