Chromium Code Reviews| Index: ui/app_list/app_list_item_model.h |
| diff --git a/ui/app_list/app_list_item_model.h b/ui/app_list/app_list_item_model.h |
| index 1fa806403304c71d27c160675734d0f9817874b5..2fe0897bf8610fe07e4b40fa71165c4f988d3e75 100644 |
| --- a/ui/app_list/app_list_item_model.h |
| +++ b/ui/app_list/app_list_item_model.h |
| @@ -31,8 +31,9 @@ class APP_LIST_EXPORT AppListItemModel { |
| const gfx::ImageSkia& icon() const { return icon_; } |
| bool has_shadow() const { return has_shadow_; } |
| - void SetTitle(const std::string& title); |
| + void SetName(const std::string& title, const std::string& full_name); |
|
benwells
2013/08/30 06:25:07
Nit: I'd prefer SetTitleAndFullName.
tmdiep
2013/08/30 07:29:52
Done.
|
| const std::string& title() const { return title_; } |
| + const std::string& full_name() const { return full_name_; } |
| void SetHighlighted(bool highlighted); |
| bool highlighted() const { return highlighted_; } |
| @@ -58,6 +59,7 @@ class APP_LIST_EXPORT AppListItemModel { |
| gfx::ImageSkia icon_; |
| bool has_shadow_; |
| std::string title_; |
| + std::string full_name_; |
| bool highlighted_; |
| bool is_installing_; |
| int percent_downloaded_; |