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

Unified Diff: ash/system/power/power_status_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 | « ash/system/locale/tray_locale.cc ('k') | ash/system/tray/tray_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/power/power_status_view.cc
diff --git a/ash/system/power/power_status_view.cc b/ash/system/power/power_status_view.cc
index 36295885b875b3ab44659547fce14f8bfd522916..871f5a02b215becd8aad23da61ab0786fabc6709 100644
--- a/ash/system/power/power_status_view.cc
+++ b/ash/system/power/power_status_view.cc
@@ -92,10 +92,10 @@ void PowerStatusView::LayoutDefaultView() {
void PowerStatusView::LayoutNotificationView() {
SetLayoutManager(
new views::BoxLayout(views::BoxLayout::kVertical, 0, 0, 1));
- status_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ status_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
AddChildView(status_label_);
- time_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ time_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
AddChildView(time_label_);
}
« no previous file with comments | « ash/system/locale/tray_locale.cc ('k') | ash/system/tray/tray_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698