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

Unified Diff: ui/app_list/app_list_view_delegate.cc

Issue 1802473002: Add deprecation warning banner to App Launcher on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20170310-MacViews-ViewsUnittests
Patch Set: self nits Created 4 years, 9 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_view_delegate.cc
diff --git a/ui/app_list/app_list_view_delegate.cc b/ui/app_list/app_list_view_delegate.cc
index 7ec19b73856bfc55a1dd4351977813589f1852e6..d7d7beeaa62d0583a0f055352b658408f491d195 100644
--- a/ui/app_list/app_list_view_delegate.cc
+++ b/ui/app_list/app_list_view_delegate.cc
@@ -13,4 +13,26 @@ AppListViewDelegate::User::User(const User& other) = default;
AppListViewDelegate::User::~User() {}
-} // app_list
+#if !defined(OS_CHROMEOS)
+base::string16 AppListViewDelegate::GetMessageTitle() const {
+ return base::string16();
+}
+base::string16 AppListViewDelegate::GetMessageText() const {
+ return base::string16();
+}
+base::string16 AppListViewDelegate::GetAppsShortcutName() const {
+ return base::string16();
+}
+base::string16 AppListViewDelegate::GetLearnMoreText() const {
+ return base::string16();
+}
+base::string16 AppListViewDelegate::GetLearnMoreLink() const {
+ return base::string16();
+}
+gfx::ImageSkia* AppListViewDelegate::GetAppsIcon() const {
+ return nullptr;
+}
+void AppListViewDelegate::OpenLearnMoreLink() {}
+#endif
+
+} // namespace app_list

Powered by Google App Engine
This is Rietveld 408576698