Chromium Code Reviews| 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(); |