| Index: chrome/browser/ui/app_list/app_list_syncable_service.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_syncable_service.cc b/chrome/browser/ui/app_list/app_list_syncable_service.cc
|
| index 9dd44d63232d59b82f0ad308d705dc9c1af0b1f5..874934ab4c1ea29391cb976d072feed5627d1413 100644
|
| --- a/chrome/browser/ui/app_list/app_list_syncable_service.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_syncable_service.cc
|
| @@ -485,6 +485,12 @@ void AppListSyncableService::RemoveItem(const std::string& id) {
|
| PruneEmptySyncFolders();
|
| }
|
|
|
| +void AppListSyncableService::RemoveUninstalledItem(const std::string& id) {
|
| + RemoveSyncItem(id);
|
| + model_->DeleteUninstalledItem(id);
|
| + PruneEmptySyncFolders();
|
| +}
|
| +
|
| void AppListSyncableService::UpdateItem(AppListItem* app_item) {
|
| // Check to see if the item needs to be moved to/from the OEM folder.
|
| if (!app_list::switches::IsFolderUIEnabled())
|
|
|