| Index: chrome/browser/ui/views/location_bar/zoom_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/zoom_bubble_view.cc b/chrome/browser/ui/views/location_bar/zoom_bubble_view.cc
|
| index ec5f3d6605d9eba2382e09b337de6fc0327b5614..33439dcdd214e1e5eece9f5a2d17f76237030b35 100644
|
| --- a/chrome/browser/ui/views/location_bar/zoom_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/zoom_bubble_view.cc
|
| @@ -26,7 +26,7 @@
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/favicon_size.h"
|
| #include "ui/views/controls/button/image_button.h"
|
| -#include "ui/views/controls/button/label_button.h"
|
| +#include "ui/views/controls/button/md_text_button.h"
|
| #include "ui/views/controls/separator.h"
|
| #include "ui/views/layout/grid_layout.h"
|
| #include "ui/views/layout/layout_constants.h"
|
| @@ -190,10 +190,9 @@ void ZoomBubbleView::Init() {
|
| grid_layout->StartRow(0, 1);
|
|
|
| // Add "Reset to Default" button.
|
| - views::LabelButton* set_default_button = new views::LabelButton(
|
| - this, l10n_util::GetStringUTF16(IDS_ZOOM_SET_DEFAULT));
|
| - set_default_button->SetStyle(views::Button::STYLE_BUTTON);
|
| - grid_layout->AddView(set_default_button);
|
| + grid_layout->AddView(
|
| + views::MdTextButton::CreateSecondaryUiButton(
|
| + this, l10n_util::GetStringUTF16(IDS_ZOOM_SET_DEFAULT)));
|
|
|
| StartTimerIfNecessary();
|
| }
|
|
|