| Index: ash/shell/widgets.cc
|
| diff --git a/ash/shell/widgets.cc b/ash/shell/widgets.cc
|
| index 42e7f629235012b795b2ecf55f0f2a9a8e209c86..e62343bcb341c1ec5e9fddcdd6fd2e5203153cc0 100644
|
| --- a/ash/shell/widgets.cc
|
| +++ b/ash/shell/widgets.cc
|
| @@ -54,11 +54,10 @@ class WidgetsWindow : public views::WidgetDelegateView {
|
|
|
| WidgetsWindow::WidgetsWindow()
|
| : button_(
|
| - views::MdTextButton::CreateMdButton(nullptr,
|
| - base::ASCIIToUTF16("Button"))),
|
| - disabled_button_(views::MdTextButton::CreateMdButton(
|
| - nullptr,
|
| - base::ASCIIToUTF16("Disabled button"))),
|
| + views::MdTextButton::Create(nullptr, base::ASCIIToUTF16("Button"))),
|
| + disabled_button_(
|
| + views::MdTextButton::Create(nullptr,
|
| + base::ASCIIToUTF16("Disabled button"))),
|
| checkbox_(new views::Checkbox(base::ASCIIToUTF16("Checkbox"))),
|
| checkbox_disabled_(
|
| new views::Checkbox(base::ASCIIToUTF16("Checkbox disabled"))),
|
|
|