| Index: chrome/browser/ui/app_list/search/omnibox_result.cc
|
| diff --git a/chrome/browser/ui/app_list/search/omnibox_result.cc b/chrome/browser/ui/app_list/search/omnibox_result.cc
|
| index 067bb80db7f7d9c241e121caf82733e111636f50..3404e9eea27ec7dd6413fefea409e50073f446e8 100644
|
| --- a/chrome/browser/ui/app_list/search/omnibox_result.cc
|
| +++ b/chrome/browser/ui/app_list/search/omnibox_result.cc
|
| @@ -159,10 +159,10 @@ void OmniboxResult::Open(int event_flags) {
|
| ui::DispositionFromEventFlags(event_flags));
|
| }
|
|
|
| -scoped_ptr<SearchResult> OmniboxResult::Duplicate() const {
|
| - return scoped_ptr<SearchResult>(new OmniboxResult(profile_, list_controller_,
|
| - autocomplete_controller_,
|
| - is_voice_query_, match_));
|
| +std::unique_ptr<SearchResult> OmniboxResult::Duplicate() const {
|
| + return std::unique_ptr<SearchResult>(
|
| + new OmniboxResult(profile_, list_controller_, autocomplete_controller_,
|
| + is_voice_query_, match_));
|
| }
|
|
|
| void OmniboxResult::UpdateIcon() {
|
|
|