| Index: ui/app_list/views/search_result_page_view.cc
|
| diff --git a/ui/app_list/views/search_result_page_view.cc b/ui/app_list/views/search_result_page_view.cc
|
| index 40b9f26eeebf943f08ee82c08adaa3dd69a18638..566c0dd72689bba8d3e852ad0167a8b336afdea6 100644
|
| --- a/ui/app_list/views/search_result_page_view.cc
|
| +++ b/ui/app_list/views/search_result_page_view.cc
|
| @@ -37,8 +37,8 @@ const int kSearchResultZHeight = 1;
|
| class SearchCardView : public views::View {
|
| public:
|
| explicit SearchCardView(views::View* content_view) {
|
| - SetBorder(base::WrapUnique(
|
| - new views::ShadowBorder(GetShadowForZHeight(kSearchResultZHeight))));
|
| + SetBorder(base::MakeUnique<views::ShadowBorder>(
|
| + GetShadowForZHeight(kSearchResultZHeight)));
|
| SetLayoutManager(new views::FillLayout());
|
| content_view->set_background(
|
| views::Background::CreateSolidBackground(kCardBackgroundColor));
|
|
|