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

Unified Diff: ash/shell/app_list.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: ash/shell/app_list.cc
diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc
index cd3a0faceacf28c24bcd366d7011d51ab6081fee..c18d9daff60a1bbb3a5ab1d7b7bc7e6b7f67cc5c 100644
--- a/ash/shell/app_list.cc
+++ b/ash/shell/app_list.cc
@@ -279,6 +279,14 @@ class ExampleAppListViewDelegate : public app_list::AppListViewDelegate {
Shell::GetInstance()->ToggleAppList();
}
+ virtual void ViewClosing() OVERRIDE {
+ // Nothing needs to be done.
+ }
+
+ virtual void ViewActivationChanged(bool active) OVERRIDE {
+ // Nothing needs to be done.
+ }
+
app_list::AppListModel* model_;
DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate);

Powered by Google App Engine
This is Rietveld 408576698