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

Unified Diff: ash/wm/focus_rules.h

Issue 2895713002: [mus+ash] Removes WmWindow from ash/wm/mru_window_tracker and overview mode (Closed)
Patch Set: Address nits, unit_tests target compiles 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/wm/focus_rules.h
diff --git a/ash/wm/focus_rules.h b/ash/wm/focus_rules.h
index bd3e62fa89da07738ebaf9d13e9379abe8504759..4f5436b1d14a1b418eaa3508c97d24d7464c690a 100644
--- a/ash/wm/focus_rules.h
+++ b/ash/wm/focus_rules.h
@@ -7,15 +7,17 @@
#include "ash/ash_export.h"
-namespace ash {
+namespace aura {
+class Window;
+}
-class WmWindow;
+namespace ash {
// These functions provide the ash implementation wm::FocusRules. See
// description there for details.
-ASH_EXPORT bool IsToplevelWindow(WmWindow* window);
-ASH_EXPORT bool IsWindowConsideredActivatable(WmWindow* window);
-ASH_EXPORT bool IsWindowConsideredVisibleForActivation(WmWindow* window);
+ASH_EXPORT bool IsToplevelWindow(aura::Window* window);
+ASH_EXPORT bool IsWindowConsideredActivatable(aura::Window* window);
+ASH_EXPORT bool IsWindowConsideredVisibleForActivation(aura::Window* window);
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698