| Index: chrome/browser/ui/app_list/app_list_prefs_factory.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_prefs_factory.cc b/chrome/browser/ui/app_list/app_list_prefs_factory.cc
|
| index ddb0f9a35d2570e1c23ad334cb89afbda1e1ed34..b9818eeac36d5cf3e93ad507b02d5fef85fc95fd 100644
|
| --- a/chrome/browser/ui/app_list/app_list_prefs_factory.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_prefs_factory.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/ui/app_list/app_list_prefs_factory.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/prefs/pref_service.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/app_list/app_list_prefs.h"
|
| @@ -28,7 +30,7 @@ AppListPrefsFactory* AppListPrefsFactory::GetInstance() {
|
| void AppListPrefsFactory::SetInstanceForTesting(
|
| content::BrowserContext* context,
|
| scoped_ptr<AppListPrefs> prefs) {
|
| - Associate(context, prefs.Pass());
|
| + Associate(context, std::move(prefs));
|
| }
|
|
|
| AppListPrefsFactory::AppListPrefsFactory()
|
|
|