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

Unified Diff: ash/shell.cc

Issue 2906693003: [mus+ash] Removes WmWindow from screen_dimmer and video_detector (Closed)
Patch Set: [mus+ash] Removes WmWindow from screen_dimmer and video_detector 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 1ddf282c66db499bd490bedf2394572def36d3f4..72e09689ce4e44c613160fbd8239c3d666480583 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -347,7 +347,7 @@ void Shell::OnCastingSessionStartedOrStopped(bool started) {
observer.OnCastingSessionStartedOrStopped(started);
}
-void Shell::OnRootWindowAdded(WmWindow* root_window) {
+void Shell::OnRootWindowAdded(aura::Window* root_window) {
for (auto& observer : shell_observers_)
observer.OnRootWindowAdded(root_window);
}
@@ -513,7 +513,7 @@ void Shell::NotifyOverviewModeEnded() {
}
void Shell::NotifyFullscreenStateChanged(bool is_fullscreen,
- WmWindow* root_window) {
+ aura::Window* root_window) {
for (auto& observer : shell_observers_)
observer.OnFullscreenStateChanged(is_fullscreen, 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