| Index: chrome/browser/ui/views/outdated_upgrade_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/outdated_upgrade_bubble_view.cc b/chrome/browser/ui/views/outdated_upgrade_bubble_view.cc
|
| index f15e9e32d55ab2a18fd85ccbabef6825862a1718..3631a888b24ce0a0f49769714951e240d462ba35 100644
|
| --- a/chrome/browser/ui/views/outdated_upgrade_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/outdated_upgrade_bubble_view.cc
|
| @@ -14,7 +14,7 @@
|
| #include "grit/theme_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| -#include "ui/views/controls/button/text_button.h"
|
| +#include "ui/views/controls/button/label_button.h"
|
| #include "ui/views/controls/image_view.h"
|
| #include "ui/views/controls/label.h"
|
| #include "ui/views/layout/grid_layout.h"
|
| @@ -93,13 +93,15 @@ void OutdatedUpgradeBubbleView::WindowClosing() {
|
| void OutdatedUpgradeBubbleView::Init() {
|
| string16 product_name(l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME));
|
| ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
|
| - reinstall_button_ = new views::NativeTextButton(
|
| + reinstall_button_ = new views::LabelButton(
|
| this, l10n_util::GetStringFUTF16(IDS_REINSTALL_APP, product_name));
|
| + reinstall_button_->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON);
|
| reinstall_button_->SetIsDefault(true);
|
| reinstall_button_->SetFont(rb.GetFont(ui::ResourceBundle::BoldFont));
|
|
|
| - later_button_ = new views::NativeTextButton(
|
| + later_button_ = new views::LabelButton(
|
| this, l10n_util::GetStringUTF16(IDS_LATER));
|
| + later_button_->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON);
|
|
|
| views::Label* title_label = new views::Label(
|
| l10n_util::GetStringFUTF16(IDS_UPGRADE_BUBBLE_TITLE, product_name));
|
|
|