| Index: ui/message_center/views/notification_button.cc
|
| diff --git a/ui/message_center/views/notification_button.cc b/ui/message_center/views/notification_button.cc
|
| index 8fa32f31e7a3990e0aec7e51df21cde80285b626..3cc0fecf037a6015c1b181a45f37097d1548f451 100644
|
| --- a/ui/message_center/views/notification_button.cc
|
| +++ b/ui/message_center/views/notification_button.cc
|
| @@ -48,7 +48,7 @@ void NotificationButton::SetIcon(const gfx::ImageSkia& image) {
|
| icon_->SetImage(image);
|
| icon_->SetHorizontalAlignment(views::ImageView::LEADING);
|
| icon_->SetVerticalAlignment(views::ImageView::LEADING);
|
| - icon_->set_border(views::Border::CreateEmptyBorder(
|
| + icon_->SetBorder(views::Border::CreateEmptyBorder(
|
| message_center::kButtonIconTopPadding, 0, 0, 0));
|
| AddChildViewAt(icon_, 0);
|
| }
|
| @@ -64,8 +64,8 @@ void NotificationButton::SetTitle(const base::string16& title) {
|
| title_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| title_->SetEnabledColor(message_center::kRegularTextColor);
|
| title_->SetBackgroundColor(kRegularTextBackgroundColor);
|
| - title_->set_border(views::Border::CreateEmptyBorder(
|
| - kButtonTitleTopPadding, 0, 0, 0));
|
| + title_->SetBorder(
|
| + views::Border::CreateEmptyBorder(kButtonTitleTopPadding, 0, 0, 0));
|
| AddChildView(title_);
|
| }
|
| SetAccessibleName(title);
|
|
|