Index: ash/wm/window_util.cc |
diff --git a/ash/wm/window_util.cc b/ash/wm/window_util.cc |
index 4a94e1b957f0460ef60375898d2bcf52a2da5639..a6f7a23776ee615ba16707361ce608520a7f22db 100644 |
--- a/ash/wm/window_util.cc |
+++ b/ash/wm/window_util.cc |
@@ -53,6 +53,10 @@ aura::Window* GetActivatableWindow(aura::Window* window) { |
return internal::ActivationController::GetActivatableWindow(window, NULL); |
} |
+bool CanActivateWindowItself(aura::Window* window) { |
+ return internal::ActivationController::CanActivateWindowItself(window); |
+} |
+ |
bool IsWindowNormal(aura::Window* window) { |
return window->GetProperty(aura::client::kShowStateKey) == |
ui::SHOW_STATE_NORMAL || |