| Index: ui/app_list/app_list_item_model.cc
|
| diff --git a/ui/app_list/app_list_item_model.cc b/ui/app_list/app_list_item_model.cc
|
| index c9aedb59be8e2163cae7483fa95937efb7f0d3df..65b87a33ab40a5b1256e317c40a94bb69a8dda80 100644
|
| --- a/ui/app_list/app_list_item_model.cc
|
| +++ b/ui/app_list/app_list_item_model.cc
|
| @@ -24,11 +24,13 @@ void AppListItemModel::SetIcon(const gfx::ImageSkia& icon, bool has_shadow) {
|
| FOR_EACH_OBSERVER(AppListItemModelObserver, observers_, ItemIconChanged());
|
| }
|
|
|
| -void AppListItemModel::SetTitle(const std::string& title) {
|
| - if (title_ == title)
|
| +void AppListItemModel::SetTitleAndFullName(const std::string& title,
|
| + const std::string& full_name) {
|
| + if (title_ == title && full_name_ == full_name)
|
| return;
|
|
|
| title_ = title;
|
| + full_name_ = full_name;
|
| FOR_EACH_OBSERVER(AppListItemModelObserver, observers_, ItemTitleChanged());
|
| }
|
|
|
|
|