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

Unified Diff: ash/system/chromeos/network/tray_sms.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 | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/date/date_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/chromeos/network/tray_sms.cc
diff --git a/ash/system/chromeos/network/tray_sms.cc b/ash/system/chromeos/network/tray_sms.cc
index f9ec86e76ab0642247c73655d8fae78f02e1b6da..4e1e0a8ac55a5d532d00e399fe8f9003bb4787dc 100644
--- a/ash/system/chromeos/network/tray_sms.cc
+++ b/ash/system/chromeos/network/tray_sms.cc
@@ -94,12 +94,12 @@ class TraySms::SmsMessageView : public views::View,
number_label_ = new views::Label(
l10n_util::GetStringFUTF16(IDS_ASH_STATUS_TRAY_SMS_NUMBER,
UTF8ToUTF16(number)));
- number_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ number_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
number_label_->SetFont(
number_label_->font().DeriveFont(0, gfx::Font::BOLD));
message_label_ = new views::Label(UTF8ToUTF16(message));
- message_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ message_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
message_label_->SetMultiLine(true);
if (view_type == VIEW_DETAILED)
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/date/date_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698