| 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
|
|
|
|
|