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

Unified Diff: ash/common/wm/focus_rules.cc

Issue 2042913002: Converts MruWindowTracker to work with common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: not equal Created 4 years, 6 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/common/wm/focus_rules.h ('k') | ash/common/wm_shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/focus_rules.cc
diff --git a/ash/common/wm/focus_rules.cc b/ash/common/wm/focus_rules.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c710ff20cc041b56db5a1f282747a6a399478d95
--- /dev/null
+++ b/ash/common/wm/focus_rules.cc
@@ -0,0 +1,58 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ash/common/wm/focus_rules.h"
+
+#include "ash/common/shell_window_ids.h"
+#include "ash/common/wm/window_state.h"
+#include "ash/common/wm_shell.h"
+#include "ash/common/wm_window.h"
+
+namespace ash {
+
+bool IsToplevelWindow(WmWindow* window) {
+ DCHECK(window);
+ // The window must in a valid hierarchy.
+ if (!window->GetRootWindow())
+ return false;
+
+ // The window must exist within a container that supports activation.
+ // The window cannot be blocked by a modal transient.
+ return IsActivatableShellWindowId(window->GetParent()->GetShellWindowId());
+}
+
+bool IsWindowConsideredActivatable(WmWindow* window) {
+ DCHECK(window);
+ // Only toplevel windows can be activated.
+ if (!IsToplevelWindow(window))
+ return false;
+
+ // The window must be visible.
+ return IsWindowConsideredVisibleForActivation(window);
+}
+
+bool IsWindowConsideredVisibleForActivation(WmWindow* window) {
+ DCHECK(window);
+ // If the |window| doesn't belong to the current active user and also doesn't
+ // show for the current active user, then it should not be activated.
+ if (!WmShell::Get()->CanShowWindowForUser(window))
+ return false;
+
+ if (window->IsVisible())
+ return true;
+
+ // Minimized windows are hidden in their minimized state, but they can always
+ // be activated.
+ if (window->GetWindowState()->IsMinimized())
+ return true;
+
+ if (!window->GetTargetVisibility())
+ return false;
+
+ const int parent_shell_window_id = window->GetParent()->GetShellWindowId();
+ return parent_shell_window_id == kShellWindowId_DefaultContainer ||
+ parent_shell_window_id == kShellWindowId_LockScreenContainer;
+}
+
+} // namespace ash
« no previous file with comments | « ash/common/wm/focus_rules.h ('k') | ash/common/wm_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698