Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: ui/app_list/app_list_item_model.cc

Issue 25859005: Elim ActivateAppListItem, ChromeAppListItem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix static cast in AppModelBuilder, add AppType Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 65b87a33ab40a5b1256e317c40a94bb69a8dda80..d0e63539bce0b11e4ffac0f38a3c94daf7e9976e 100644
--- a/ui/app_list/app_list_item_model.cc
+++ b/ui/app_list/app_list_item_model.cc
@@ -72,6 +72,16 @@ void AppListItemModel::RemoveObserver(AppListItemModelObserver* observer) {
observers_.RemoveObserver(observer);
}
+std::string AppListItemModel::AppType() const {
+ return "";
+}
+
+void AppListItemModel::Activate(int event_flags) {
+}
+
+void AppListItemModel::Update() {
+}
+
ui::MenuModel* AppListItemModel::GetContextMenuModel() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698