Index: chrome/browser/ui/app_list/app_list_controller.cc |
diff --git a/chrome/browser/ui/app_list/app_list_controller.cc b/chrome/browser/ui/app_list/app_list_controller.cc |
index 687c09f4dea03c8e4cf6bf309157ed4934390d3a..411e62df0fb24360f4453dd909f64c43dcebb3dc 100644 |
--- a/chrome/browser/ui/app_list/app_list_controller.cc |
+++ b/chrome/browser/ui/app_list/app_list_controller.cc |
@@ -6,6 +6,24 @@ |
#include "build/build_config.h" |
+AppListControllerDelegate::~AppListControllerDelegate() {} |
+ |
+void AppListControllerDelegate::ViewClosing() {} |
+ |
+void AppListControllerDelegate::ViewActivationChanged(bool active) {} |
+ |
+bool AppListControllerDelegate::IsAppPinned(const std::string& extension_id) { |
+ return false; |
+} |
+ |
+void AppListControllerDelegate::PinApp(const std::string& extension_id) {} |
+ |
+void AppListControllerDelegate::UnpinApp(const std::string& extension_id) {} |
+ |
+void AppListControllerDelegate::ShowCreateShortcutsDialog( |
+ Profile* profile, |
+ const std::string& extension_id) {} |
+ |
namespace app_list_controller { |
#if !defined(OS_WIN) |