Index: ash/system/tray_caps_lock.cc |
diff --git a/ash/system/tray_caps_lock.cc b/ash/system/tray_caps_lock.cc |
index 357c6ee4405ec9cfc01abf0c095fdded97405c6b..a570664abeecf39ca06b446172117a16d7d2c736 100644 |
--- a/ash/system/tray_caps_lock.cc |
+++ b/ash/system/tray_caps_lock.cc |
@@ -38,7 +38,7 @@ class CapsLockDefaultView : public ActionableView { |
ToImageSkia()); |
AddChildView(image); |
- text_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |
+ text_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
AddChildView(text_label_); |
shortcut_label_->SetEnabled(false); |
@@ -147,7 +147,7 @@ views::View* TrayCapsLock::CreateDetailedView(user::LoginStatus status) { |
IDS_ASH_STATUS_TRAY_CAPS_LOCK_CANCEL_BY_ALT_SEARCH; |
views::Label* label = new views::Label(bundle.GetLocalizedString(string_id)); |
label->SetMultiLine(true); |
- label->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |
+ label->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
detailed_->AddChildView(label); |
return detailed_; |