| Index: chrome/browser/autocomplete/keyword_extensions_delegate_impl_unittest.cc
|
| diff --git a/chrome/browser/autocomplete/keyword_extensions_delegate_impl_unittest.cc b/chrome/browser/autocomplete/keyword_extensions_delegate_impl_unittest.cc
|
| index 16236b76621cc6c5a05dfba108cf9ea8ba9200f5..4ffae48af093d97ea2a550fec08b4ba1f18c1880 100644
|
| --- a/chrome/browser/autocomplete/keyword_extensions_delegate_impl_unittest.cc
|
| +++ b/chrome/browser/autocomplete/keyword_extensions_delegate_impl_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/autocomplete/keyword_extensions_delegate_impl.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/path_service.h"
|
| @@ -83,7 +85,7 @@ void KeywordExtensionsDelegateImplTest::SetUp() {
|
| void KeywordExtensionsDelegateImplTest::RunTest(bool incognito) {
|
| scoped_ptr<TemplateURLService> empty_model(new TemplateURLService(NULL, 0));
|
| MockAutocompleteProviderClient client;
|
| - client.set_template_url_service(empty_model.Pass());
|
| + client.set_template_url_service(std::move(empty_model));
|
| scoped_refptr<KeywordProvider> keyword_provider =
|
| new KeywordProvider(&client, nullptr);
|
|
|
|
|