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

Unified Diff: chrome/browser/ui/app_list/app_list_controller.cc

Issue 11094019: Auto hide app list on Windows when it loses focus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feedback Created 8 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: 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)

Powered by Google App Engine
This is Rietveld 408576698