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

Unified Diff: ash/shell.cc

Issue 2907853002: [mus+ash] Removes WmWindow from ash/shelf and ash/shell (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash/shelf and ash/shell (removed some more wm_window.h) 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
« no previous file with comments | « ash/shell.h ('k') | ash/shell_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index 047fccb62cfc310a9ede3841912900f48f070939..338f3d47c9f79871b7377c105e059dd0ae873953 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -529,17 +529,17 @@ void Shell::NotifyVirtualKeyboardActivated(bool activated,
observer.OnVirtualKeyboardStateChanged(activated, root_window);
}
-void Shell::NotifyShelfCreatedForRootWindow(WmWindow* root_window) {
+void Shell::NotifyShelfCreatedForRootWindow(aura::Window* root_window) {
for (auto& observer : shell_observers_)
observer.OnShelfCreatedForRootWindow(root_window);
}
-void Shell::NotifyShelfAlignmentChanged(WmWindow* root_window) {
+void Shell::NotifyShelfAlignmentChanged(aura::Window* root_window) {
for (auto& observer : shell_observers_)
observer.OnShelfAlignmentChanged(root_window);
}
-void Shell::NotifyShelfAutoHideBehaviorChanged(WmWindow* root_window) {
+void Shell::NotifyShelfAutoHideBehaviorChanged(aura::Window* root_window) {
for (auto& observer : shell_observers_)
observer.OnShelfAutoHideBehaviorChanged(root_window);
}
« no previous file with comments | « ash/shell.h ('k') | ash/shell_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698