| Index: chrome/browser/ui/app_list/app_list_prefs.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_prefs.cc b/chrome/browser/ui/app_list/app_list_prefs.cc
|
| index e4c37dead6d60eddc3ec970a26213057bbc5f399..ca28bfaedf28e3e1a391cf64b0b1bbd699ad89f6 100644
|
| --- a/chrome/browser/ui/app_list/app_list_prefs.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_prefs.cc
|
| @@ -37,7 +37,7 @@ AppListPrefs::AppListInfo::CreateDictFromAppListInfo() const {
|
| item_dict->SetString(kModelItemParentId, parent_id);
|
| item_dict->SetString(kModelItemName, name);
|
| item_dict->SetInteger(kModelItemType, item_type);
|
| - return item_dict.Pass();
|
| + return item_dict;
|
| }
|
|
|
| // static
|
| @@ -58,7 +58,7 @@ AppListPrefs::AppListInfo::CreateAppListInfoFromDict(
|
|
|
| info->position = syncer::StringOrdinal(item_ordinal_string);
|
| info->item_type = static_cast<ItemType>(item_type_int);
|
| - return info.Pass();
|
| + return info;
|
| }
|
|
|
| // AppListPrefs
|
|
|