Index: ui/message_center/message_simple_view.cc |
diff --git a/ui/message_center/message_simple_view.cc b/ui/message_center/message_simple_view.cc |
index 39f2ab2882d5cfe05257e89fd2c16f8bb09baf02..46c5941a765bd7afd4ff6342054a88e62a80788a 100644 |
--- a/ui/message_center/message_simple_view.cc |
+++ b/ui/message_center/message_simple_view.cc |
@@ -39,10 +39,10 @@ void MessageSimpleView::SetUpView() { |
icon_->SetImage(notification_.image); |
views::Label* title = new views::Label(notification_.title); |
- title->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |
+ title->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
title->SetFont(title->font().DeriveFont(0, gfx::Font::BOLD)); |
views::Label* message = new views::Label(notification_.message); |
- message->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |
+ message->SetHorizontalAlignment(gfx::ALIGN_LEFT); |
message->SetMultiLine(true); |
close_button_ = new views::ImageButton(this); |