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

Unified Diff: ash/shell.cc

Issue 2898743002: Draggable peeking/fullscreen launcher with transparent background. (Closed)
Patch Set: Rebased to resolve merge conflicts, Refactored to use observers, addressed comments, and disabled a… Created 3 years, 7 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.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index c12b790bc3bec3a4db87f3b6667ff067f839f259..85ca8ad6036b81b539c1bd1e0a46a35645fb5152 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -486,6 +486,12 @@ void Shell::UpdateAfterLoginStatusChange(LoginStatus status) {
}
}
+void Shell::NotifyAppListShownOrDismissed(bool shown,
+ aura::Window* root_window) {
+ for (auto& observer : shell_observers_)
+ observer.OnAppListShownOrDismissed(shown, root_window);
+}
+
void Shell::NotifyMaximizeModeStarted() {
for (auto& observer : shell_observers_)
observer.OnMaximizeModeStarted();

Powered by Google App Engine
This is Rietveld 408576698