| Index: ui/app_list/views/speech_view.cc
|
| diff --git a/ui/app_list/views/speech_view.cc b/ui/app_list/views/speech_view.cc
|
| index 7f59222d4c3725aa5e5cc88de1c8b970c7e52cbb..c6bad7c4549b49784b51a01cca22d7698f78adab 100644
|
| --- a/ui/app_list/views/speech_view.cc
|
| +++ b/ui/app_list/views/speech_view.cc
|
| @@ -94,11 +94,11 @@ bool MicButton::HitTestRect(const gfx::Rect& rect) const {
|
|
|
| SpeechView::SpeechView(AppListViewDelegate* delegate)
|
| : delegate_(delegate) {
|
| - set_border(new views::ShadowBorder(
|
| - kShadowBlur,
|
| - kShadowColor,
|
| - kShadowOffset, // Vertical offset.
|
| - 0));
|
| + SetBorder(scoped_ptr<views::Border>(
|
| + new views::ShadowBorder(kShadowBlur,
|
| + kShadowColor,
|
| + kShadowOffset, // Vertical offset.
|
| + 0)));
|
|
|
| // To keep the painting order of the border and the background, this class
|
| // actually has a single child of 'container' which has white background and
|
|
|