| Index: ui/app_list/views/search_box_view.cc
|
| diff --git a/ui/app_list/views/search_box_view.cc b/ui/app_list/views/search_box_view.cc
|
| index fb066d3fc9e71e06b03cd0cbd76938e18cac685f..3629fa8d80ecc338de3ae255c02768fcc7554c6a 100644
|
| --- a/ui/app_list/views/search_box_view.cc
|
| +++ b/ui/app_list/views/search_box_view.cc
|
| @@ -55,7 +55,7 @@ SearchBoxView::SearchBoxView(SearchBoxViewDelegate* delegate,
|
|
|
| #if !defined(OS_CHROMEOS)
|
| menu_button_ = new views::MenuButton(NULL, base::string16(), this, false);
|
| - menu_button_->set_border(NULL);
|
| + menu_button_->SetBorder(views::Border::NullBorder());
|
| menu_button_->SetIcon(*rb.GetImageSkiaNamed(IDR_APP_LIST_TOOLS_NORMAL));
|
| menu_button_->SetHoverIcon(*rb.GetImageSkiaNamed(IDR_APP_LIST_TOOLS_HOVER));
|
| menu_button_->SetPushedIcon(*rb.GetImageSkiaNamed(
|
| @@ -63,7 +63,7 @@ SearchBoxView::SearchBoxView(SearchBoxViewDelegate* delegate,
|
| AddChildView(menu_button_);
|
| #endif
|
|
|
| - search_box_->set_border(NULL);
|
| + search_box_->SetBorder(views::Border::NullBorder());
|
| search_box_->SetFontList(rb.GetFontList(ui::ResourceBundle::MediumFont));
|
| search_box_->set_placeholder_text_color(kHintTextColor);
|
| search_box_->set_controller(this);
|
|
|